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.
Dependencies: pulga-lorawan-drv SX1272
serial_cmds.cpp
- Committer:
- pancotinho
- Date:
- 2021-03-31
- Revision:
- 9:cf555a570349
- Parent:
- 7:37dc9ce68914
- Child:
- 10:f6ff8ec221ec
File content as of revision 9:cf555a570349:
#include "serial.h" bool SerialCommandRun(const char *msg) { char Option = msg[1]; /// recebo opcao switch (Option) { case CMD_SEND_HELLO: { pc.printf("hello word!\n"); break;} case CMD_SEND_LORA_P2P: { pc.printf("<p %s>", msg+2); send_msg((char*)(msg + 2)); break;} } return true; }