|
knx
ETS configurable knx-stack
|
Go to the source code of this file.
Typedefs | |
| typedef void(* | IsrFuncPtr) () |
Functions | |
| void | sleep (uint32_t sec) |
| void | usleep (uint32_t usec) |
| uint32_t | millis () |
| void | delay (uint32_t ms) |
| void | delayMicroseconds (unsigned int howLong) |
| size_t | write (uint8_t c) |
| size_t | write (const uint8_t *buffer, size_t size) |
| size_t | write (const char *buffer, size_t size) |
| void | print (const char *s) |
| void | print (char c) |
| void | printUint64 (uint64_t value, int base=DEC) |
| void | print (long long num, int base) |
| void | print (unsigned long long num, int base) |
| void | print (unsigned char num, int base) |
| void | print (int num, int base) |
| void | print (unsigned int num, int base) |
| void | print (long num, int base) |
| void | print (unsigned long num, int base) |
| void | printFloat (double number, uint8_t digits) |
| void | print (double num, int digits=2) |
| void | println (void) |
| void | println (const char *s) |
| void | println (char c) |
| void | println (unsigned char num, int base) |
| void | println (int num, int base) |
| void | println (unsigned int num, int base) |
| void | println (long num, int base) |
| void | println (unsigned long num, int base) |
| void | println (unsigned long long num, int base) |
| void | println (double num, int digits=2) |
| void | println (double num) |
| uint32_t | digitalRead (uint32_t dwPin) |
| void | digitalWrite (unsigned long pin, unsigned long value) |
| void | pinMode (unsigned long pin, unsigned long mode) |
| void | attachInterrupt (uint32_t pin, IsrFuncPtr callback, uint32_t mode) |
| typedef void(* IsrFuncPtr) () |
Definition at line 462 of file cc1310_platform.cpp.
| void attachInterrupt | ( | uint32_t | pin, |
| IsrFuncPtr | callback, | ||
| uint32_t | mode | ||
| ) |
| void delay | ( | uint32_t | ms | ) |
| void delayMicroseconds | ( | unsigned int | howLong | ) |
| uint32_t digitalRead | ( | uint32_t | dwPin | ) |
Definition at line 424 of file cc1310_platform.cpp.
| void digitalWrite | ( | unsigned long | pin, |
| unsigned long | value | ||
| ) |
Definition at line 432 of file cc1310_platform.cpp.
| uint32_t millis | ( | ) |
| void pinMode | ( | unsigned long | pin, |
| unsigned long | mode | ||
| ) |
Definition at line 454 of file cc1310_platform.cpp.
| void print | ( | char | c | ) |
| void print | ( | const char * | s | ) |
Definition at line 193 of file cc1310_platform.cpp.
| void print | ( | double | num, |
| int | digits = 2 |
||
| ) |
| void print | ( | int | num, |
| int | base | ||
| ) |
| void print | ( | long long | num, |
| int | base | ||
| ) |
| void print | ( | long | num, |
| int | base | ||
| ) |
| void print | ( | unsigned char | num, |
| int | base | ||
| ) |
| void print | ( | unsigned int | num, |
| int | base | ||
| ) |
| void print | ( | unsigned long long | num, |
| int | base | ||
| ) |
| void print | ( | unsigned long | num, |
| int | base | ||
| ) |
| void printFloat | ( | double | number, |
| uint8_t | digits | ||
| ) |
Definition at line 292 of file cc1310_platform.cpp.
| void println | ( | char | c | ) |
| void println | ( | const char * | s | ) |
| void println | ( | double | num | ) |
| void println | ( | double | num, |
| int | digits = 2 |
||
| ) |
| void println | ( | int | num, |
| int | base | ||
| ) |
| void println | ( | long | num, |
| int | base | ||
| ) |
| void println | ( | unsigned char | num, |
| int | base | ||
| ) |
| void println | ( | unsigned int | num, |
| int | base | ||
| ) |
| void println | ( | unsigned long long | num, |
| int | base | ||
| ) |
| void println | ( | unsigned long | num, |
| int | base | ||
| ) |
| void println | ( | void | ) |
Definition at line 359 of file cc1310_platform.cpp.
| void printUint64 | ( | uint64_t | value, |
| int | base = DEC |
||
| ) |
Definition at line 207 of file cc1310_platform.cpp.
| void sleep | ( | uint32_t | sec | ) |
| void usleep | ( | uint32_t | usec | ) |
Definition at line 118 of file cc1310_platform.cpp.
| size_t write | ( | const char * | buffer, |
| size_t | size | ||
| ) |
| size_t write | ( | const uint8_t * | buffer, |
| size_t | size | ||
| ) |
| size_t write | ( | uint8_t | c | ) |