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.
16 lines
344 B
16 lines
344 B
#include "sys.h"
|
|
#include "version.h"
|
|
#include "zble_service.h"
|
|
|
|
zble_service_cfg_t cfg = {.deviceName = "iflytop"};
|
|
|
|
int main(void) {
|
|
zsys_init();
|
|
|
|
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();
|
|
}
|