单导联心电记录仪
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
433 B

#include "board.h"
#include "project_cfg.h"
#include "sys.h"
#include "version.h"
#include "zble_service.h"
zble_service_cfg_t cfg = {.deviceName = "iflytop"};
int main(void) {
zsys_init();
debug_light_init(DEBUG_LIGHT_IO_INDEX); //
NRF_LOG_INFO("compile time :%s", __TIME__);
NRF_LOG_INFO("Version :%d", VERSION);
NRF_LOG_INFO("Manufacturer :%s", MANUFACTURER_NAME);
zble_service_init(&cfg);
zsys_loop();
}