Setting up the environment (9.21) Install your FTDI usb->serial converter |
String
#GLOBAL_INIT
Actions are performed only once among many calls. Use with caution.
int receive_packet(void) {
static char buf[128];
#GLOBAL_INIT {
memset(buf, 0, sizeof(buf));
}
}
|