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.
Board.h
00001 #ifndef BOARD_H 00002 #define BOARD_H 00003 00004 00005 typedef enum 00006 { 00007 NO_LED, 00008 ind1, 00009 ind2, 00010 ind3, 00011 ind4, 00012 LED5, 00013 LED6, 00014 LED7, 00015 LED8 00016 } ledEnum; 00017 00018 typedef enum 00019 { 00020 NO_LED_IND = NO_LED, 00021 CC3000_ON_IND = ind1, 00022 CC3000_ASSOCIATED_IND = ind2, 00023 CC3000_IP_ALLOC_IND = ind3, 00024 CC3000_SERVER_INIT_IND = ind4, 00025 CC3000_CLIENT_CONNECTED_IND = ind4, 00026 CC3000_SENDING_DATA_IND = ind3, 00027 CC3000_UNUSED1_IND = LED7, 00028 CC3000_FTC_IND = LED8 00029 } ledNames; 00030 00031 void turnLedOn(char ledNum); 00032 void turnLedOff(char ledNum); 00033 void toggleLed(char ledNum); 00034 uint8_t GetLEDStatus(void); 00035 00036 #endif
Generated on Wed Jul 13 2022 13:30:51 by
1.7.2