at_version.c 270 B

1234567891011
  1. #include <at.h>
  2. #define AT_VERSION "0.0.3"
  3. static at_result_t at_version_exec(void)
  4. {
  5. at_server_printfln(AT_VERSION);
  6. at_server_printfln("%s %s", __DATE__, __TIME__);
  7. return AT_RESULT_OK;
  8. }
  9. AT_CMD_EXPORT("AT+GMR", NULL, NULL, NULL, NULL, at_version_exec);