Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
driverLifiTx.h@35:dcddce1fe126, 2019-04-10 (annotated)
- Committer:
- JongYongPark
- Date:
- Wed Apr 10 11:58:29 2019 +0900
- Revision:
- 35:dcddce1fe126
- Parent:
- 34:d704131107dd
- Parent:
- 30:75cb79acdcff
add struct
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JongYongPark | 0:488aa8153e15 | 1 | #ifndef __DRIVER_LIFI_TX_H__ |
JongYongPark | 0:488aa8153e15 | 2 | #define __DRIVER_LIFI_TX_H__ |
JongYongPark | 0:488aa8153e15 | 3 | |
JongYongPark | 0:488aa8153e15 | 4 | #include "app.h" |
JongYongPark | 0:488aa8153e15 | 5 | #include "lifiTranceiver.h" |
JongYongPark | 0:488aa8153e15 | 6 | |
JongYongPark | 0:488aa8153e15 | 7 | #if (USE_LOCAL_TICKER==0) |
JongYongPark | 0:488aa8153e15 | 8 | extern Ticker lifi_tx_timer; |
JongYongPark | 0:488aa8153e15 | 9 | #endif |
JongYongPark | 0:488aa8153e15 | 10 | |
JongYongPark | 0:488aa8153e15 | 11 | extern DigitalOut led_1; |
JongYongPark | 0:488aa8153e15 | 12 | extern DigitalOut led_2; |
JongYongPark | 0:488aa8153e15 | 13 | extern DigitalOut led_3; |
JongYongPark | 0:488aa8153e15 | 14 | extern DigitalOut led_4; |
JongYongPark | 21:82b5759f5047 | 15 | extern DigitalOut led_tx_debug; |
JongYongPark | 0:488aa8153e15 | 16 | |
JongYongPark | 0:488aa8153e15 | 17 | extern void LifiTx_LedTuning(); |
JongYongPark | 0:488aa8153e15 | 18 | extern void LifiTx_Run(); |
JongYongPark | 0:488aa8153e15 | 19 | |
JongYongPark | 0:488aa8153e15 | 20 | extern void LifiTx_LedOn(int num); |
JongYongPark | 0:488aa8153e15 | 21 | extern void LifiTx_LedOff(int num); |
JongYongPark | 0:488aa8153e15 | 22 | extern void LifiTx_LedBlink(int num); |
JongYongPark | 0:488aa8153e15 | 23 | |
JongYongPark | 26:26474003e443 | 24 | extern void LifiTx_DebugLedOn(); |
JongYongPark | 26:26474003e443 | 25 | extern void LifiTx_DebugLedOff(); |
JongYongPark | 0:488aa8153e15 | 26 | #endif |