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.
17 lines
201 B
17 lines
201 B
#include "camera.h"
|
|
//
|
|
extern "C"
|
|
{
|
|
#include "ble_spp_server_demo.h"
|
|
}
|
|
|
|
extern "C" void app_main(void)
|
|
{
|
|
ble_spp_server_init();
|
|
camera_init();
|
|
|
|
while (true)
|
|
{
|
|
/* code */
|
|
}
|
|
}
|