I am currently using the ble_app_template code from examples\ble_peripheral in SDK v10. The code and BLE read/write function successfully works. I now want to combine the ble_app_template code with twi_scanner code, because I am trying to use the nrf51822 to connect to i2c sensors, get the sensor data, and then send the data over BLE to phone.
I have successfully combined two peripheral examples programs before: twi_scanner and uart from examples\peripherals in SDK v12. I did that by combining the main.c and sdk_config.h code from both examples.
When I check the ble_app_template project in Keil 5, I cannot see a sdk_config.h file anywhere. I did some research and another post said the sdk_config.h is in the config folder for the project. But in Keil the config folder is not included under the project files for ble_app_template. How should I proceed? Thank you