This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Starting point recommendations on my project

Hi,

I've tried blink,hid,uart,template similar sdk examples so far. Now i acquired some experience about nrf52832 processor and bluetooth,but ii don't really have enough information for prototyping my Project. I need some guidance for prototyping as soon as possible. 

My project's requirements; reading ADC 10times/s also reading uart/spi sensors 10times/s and sending these datas with 10 times/s after packeting. Also i need to get packet from mobile phone.

What is the right examples that i can use as base Project? Then i want to maintain adding required components.

Which method should i use for sending(uart,gatt,gls)? 

Can i do using register level coding(scratch) instead of using SDK? I'm more familier register level control of peripherals(ADC,SPI similar). 

Any guidance would be appreciated. 

Best Regards

Berker ISIK

  • Hi Berker.

    For ADC, I suggest you take a look at the \examples\peripheral\saadc example, which demostrates the use of the analog-to-digital converter (SAADC) peripheral. It uses the SAADC driver.

    You can combine the SAADC example with the \examples\ble_peripheral\ble_app_uart example so that you have both the BLE and UART feature. It would be easiest to start at the ble_app_uart example and add the needed code from the SAADC example.

     

    Which method should i use for sending(uart,gatt,gls)? 

     I'm unsure what you mean by this question?

     

    Can i do using register level coding(scratch) instead of using SDK? I'm more familier register level control of peripherals(ADC,SPI similar). 

     Yes, but this would require you to do very much work which is already done in the SDK.

    - Andreas

Related