![]() |
![]() |
|
TI-OpenThread
1.08.04.07
|
#include <openthread-core-config.h>#include <stdint.h>#include <openthread/config.h>#include <openthread/instance.h>
Include dependency graph for CC1352P_4_LAUNCHXL/thread/shade/platform/system.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Functions | |
| otError | otPlatUartFlush (void) |
| void | otSysInit (int argc, char *argv[]) |
| void | platformAlarmInit (void) |
| void | platformAlarmMicroInit (void) |
| void | platformAlarmMicroProcess (otInstance *aInstance) |
| void | platformAlarmMicroSignal (void) |
| void | platformAlarmProcess (otInstance *aInstance) |
| void | platformAlarmSignal (void) |
| void | platformDebugUartInit (void) |
| void | platformRadioInit (void) |
| void | platformRadioProcess (otInstance *aInstance, uintptr_t arg) |
| void | platformRadioSignal (uintptr_t arg) |
| void | platformRandomInit (void) |
| void | platformRandomProcess (void) |
| void | platformRandomSignal (void) |
| void | platformSpiProcess (void) |
| void | platformSpiSignal (void) |
| void | platformUartProcess (uintptr_t arg) |
| void | platformUartSignal (uintptr_t arg) |
Variables | |
| otInstance * | sInstance |
| void otSysInit | ( | int | argc, |
| char * | argv[] | ||
| ) |
Initialize the platform support modules.
Function documented in system.h
| void platformDebugUartInit | ( | void | ) |
Initialize the debug uart
| void platformAlarmInit | ( | void | ) |
This method initializes the alarm service used by OpenThread.
Function documented in system.h
| void platformAlarmSignal | ( | ) |
Signal the processing loop to process the alarm module.
Callback from the alarm module indicating need for processing.
| void platformAlarmProcess | ( | otInstance * | aInstance | ) |
This method performs alarm driver processing.
Function documented in system.h
| void platformAlarmMicroInit | ( | void | ) |
This method initializes the alarm service used by OpenThread.
Function documented in system.h
| void platformAlarmMicroSignal | ( | ) |
Signal the processing loop to process the alarm module.
Callback from the alarm module indicating need for processing.
| void platformAlarmMicroProcess | ( | otInstance * | aInstance | ) |
This method performs alarm driver processing.
Function documented in system.h
| void platformRadioInit | ( | void | ) |
This method initializes the radio service used by OpenThread.
Function documented in system.h
| void platformRadioSignal | ( | uintptr_t | arg | ) |
Callback from the radio module indicating need for processing.
| void platformRadioProcess | ( | otInstance * | aInstance, |
| uintptr_t | arg | ||
| ) |
This method performs radio driver processing.
Function documented in system.h This is called from the main process loop.
| void platformRandomInit | ( | void | ) |
This method initializes the random number service used by OpenThread.
Function documented in system.h
| void platformRandomSignal | ( | void | ) |
Callback from random module indicating need for processing.
Callback from the random generator module indicating need for processing.
| void platformRandomProcess | ( | void | ) |
This method performs random driver processing.
Function documented in system.h
| void platformUartSignal | ( | uintptr_t | arg | ) |
Signal the processing loop to process the uart module.
Callback from the alarm module indicating need for processing.
| void platformUartProcess | ( | uintptr_t | arg | ) |
This method performs uart driver processing.
Function documented in system.h
| void platformSpiSignal | ( | ) |
Signal the processing loop to process the spi module.
Callback from the spi module indicating need for processing.
| void platformSpiProcess | ( | void | ) |
This method performs spi driver processing.
| otError otPlatUartFlush | ( | void | ) |
This method performs UART Flush.
Function documented in system.h
| otInstance* sInstance |