单导联心电记录仪
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
436 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. #include "board.h"
  2. #include "project_cfg.h"
  3. #include "sys.h"
  4. #include "version.h"
  5. #include "zble_service.h"
  6. zble_service_cfg_t cfg = {.deviceName = "iflytop"};
  7. int main(void) {
  8. zsys_init();
  9. debug_light_init(DEBUG_LIGHT_IO_INDEX); //
  10. NRF_LOG_INFO("compile time :%s", __TIME__);
  11. NRF_LOG_INFO("Version :%d", VERSION);
  12. NRF_LOG_INFO("Manufacturer :%s", MANUFACTURER_NAME);
  13. // zble_service_init(&cfg);
  14. zsys_loop();
  15. }