Skip to content

edvinand/nRF52_peripherals_tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

nRF52 Peripherals Tutorial

Note:

This is an update of @bjornspockeli's tutorial. Ported from SDK14.1.0 to SDK15.3.0. Link in the end of this tutorial.

Brief:

Several small tutorials/exercises that shows you how to:

  • Create an Application Timer to toggle a GPIO pin
  • Configure buttons to toggle a GPIO pin
  • Generate a PWM pulse that is used to control an analog servo
  • Send serial data to and from a terminal window
  • Measure the die temperature
  • Automate peripheral using the tasks and event system -Configure a timer to toggle a gpio pin to interact autonomously with each other using tasks and events independent of the CPU

Requirements

  • nRF52 DK
  • SDK v15.3.0
  • Template project found in nRF5_SDK_15.3.0_59ac345\examples\peripheral\template_project

Tasks

In all the tasks we'll be using the SDK drivers or libraries for the peripherals, i.e. nrf_drv_xxx.c, which can be found in nRF5_SDK_14.1.0_1dda907\components\drivers_nrf\ and nRF5_SDK_14.1.0_1dda907\components\libraries respectively. Some of the drivers are found in SDK\modules\nrfx\drivers\src

Warm-up

The template project includes all the peripheral libraries and drivers from the SDK, but we're only going to use a few, so to reduce the compile time and size of our project, we'll temporarily remove them from the project.

  1. Find the template_project from nRF5_SDK_15.3.0_59ac345\examples\peripheral\template_project
  2. Create a copy of the template_project folder and rename it to nRF52_peripherals_tutorial
  3. Open the template_pca10040.emProject Segger Embedded Studio project found in nRF52_peripherals_tutorial\pca10040\blank\ses
  4. Remove the nRF_micro_ecc library (micro_ecc_lib_nrf52.a) file from the nRF_micro-ecc folder in the project explorer view on the left hand side.
  5. Now the project should compile.

1 - Blink an LED using a busy-wait loop

Goal: Blink an LED by keeping the CPU in a busy-wait loop.

  1. Include the following headers in main.c
#include "nrf_delay.h"
#include "nrf_gpio.h"
  1. Use the nrf_gpio_cfg_output() function to configure one of the pins connected to one of the LEDs of the nRF52 DK as an output. Hint: See the back of the nRF52 DK for the pin assignments.
  2. Use nrf_delay_ms() and nrf_gpio_pin_toggle() to blink an LED within the while-loop in main().

2 - Application Timer

Blinking an LED with a busy-wait loop is not very efficient, as you'll keep the CPU running without actually doing anything useful. A much better approach would be to set up a timer to toggle the LED at a given interval so that the CPU can do meaningful tasks or sleep in between the timer interrupts.
The Application Timer library provides a user friendly way of using the Real Time Counter 1 (RTC1) peripheral to create multiple timer instances. The RTC uses the Low Frequency Clock (LFCLK). Most applications keep the LFCLK active at all times and when using one of the Nordic SoftDevices the LFCLK is always active. Therefore, there is normally very little extra power consumption associated with using the application timer. As the clock is 32.768 kHz and the RTC is 24 bit, the time/tick resolution is limited, but it takes a substantial amount of time before the counter wrap around from (0xFFFFFF to 0x000000). By using the 12 bit (1/X) prescaler the frequency of the RTC can be lowered if needed.
The Application Timer library API is documented here

  1. As mentioned in the introduction of this task, the application timer uses the RTX peripheral, which in turn uses the 32kHz LFCLK. Hence, we'll need to start the LFCLK for the application timer to function properly. Create a function called lfclk_init() where you add the following snippet.
NRF_CLOCK->LFCLKSRC            = (CLOCK_LFCLKSRC_SRC_RC << CLOCK_LFCLKSRC_SRC_Pos);
NRF_CLOCK->EVENTS_LFCLKSTARTED = 0;
NRF_CLOCK->TASKS_LFCLKSTART    = 1;

while (NRF_CLOCK->EVENTS_LFCLKSTARTED == 0)
{
    // Do nothing.
}
  1. Include the app_timer.h file in your main.c file.
  2. Next, you'll need to create a application timer instance using the APP_TIMER_DEF macro.
  3. Create the function application_timer_init(), in which you initialize the application timer library, create and start the application timer.
    Hints:
    - You will need to use the functions app_timer_init(), app_timer_create() and app_timer_start()
  • You want to create a repeating timer, i.e. the mode of the applicaiton timer should be set to APP_TIMER_MODE_REPEATED.
  • The APP_TIMER_TICKS macro is very useful when setting the timeout interval.
  • Make sure to call the application_timer_init() function in main().
  1. Call nrf_gpio_toogle() function to toggle one of the nRF52 DKs LEDs in the timeout handler that you specified when you initialized the application timer.
  2. Compile and flash the example to your nRF52 DK and verify that the LED is blinking. Since there are a couple of steps to do possible errors, here is a suggestion to what the functions can look like. You can get inspiration from these if you are stuck:
APP_TIMER_DEF(m_my_timer_id);
#define TIMEOUT_INTERVAL                  APP_TIMER_TICKS(1000)
static void application_timer_init(void)
{
    ret_code_t err_code;
    err_code = app_timer_init();
    APP_ERROR_CHECK(err_code);

    err_code = app_timer_create(&m_my_timer_id, APP_TIMER_MODE_REPEATED, my_timeout_handler);
    APP_ERROR_CHECK(err_code);

    err_code = app_timer_start(m_my_timer_id, TIMEOUT_INTERVAL, NULL);
    APP_ERROR_CHECK(err_code);
}
static void my_timeout_handler(void * p_context)
{
    nrf_gpio_pin_toggle(17);
}
int main(void)
{
    nrf_gpio_cfg_output(17);

    lfclk_init();
    application_timer_init();

    while (true)
    {
        // Do nothing.
    }
}

3 - Buttons - Button Handler Library

The button handler library uses GPIOTE Handler to detect that a button has been pushed. To handle debouncing, it will start a timer in GPIOTE event handler. The button will only be reported as pushed if the corresponding pin is still active when the timer expires. If there is a new GPIOTE event while the timer is running, the timer is restarted.
The Button Handler Library API is documented here

  1. Normally we would need to add the Button Handler library, app_button.c, under nRF Libraries in our project, but this has already been added in the template project. However, we need to include the app_button.h header at the top of main.c.
  2. Next, create a static void function called buttons_init(), where you initialize the Button Handler library using app_button_init().

Hints:

  • You will need to create a app_button_cfg_t struct for each button you configure. Make sure to declare it as a static.
  • It is possible to configure a separate event handler for each individual button, but in this exercise we will use one event handler for all the buttons.
  • The button pin number as well as the active state of the buttons can be seen on the backside of the nRF52 DK.
  • After initializing the Button Handler library with button configuration you will need to enable it. There should be an appropriate function int eh app_button API.
  1. In the event handler that you set in the button configuration structure you will have to check which pin as well as which action that generated the event. Add code to the event handler so that one of the LEDs of the nRF52 DK is toggled when you push one of the buttons on the nRF52 DK.
    Hint:
  • There are two button action types, APP_BUTTON_PUSH and APP_BUTTON_RELEASE.
  • You can see which pins that are connected to the different buttons on the back of the nRF52 DK.
void my_button_handler(uint8_t pin_no, uint8_t button_action)
{
    // Check which pin that generated the event as well as which type of button action that caused the event.
}
  1. Compile and flash the project to your nRF52 DK and verify that the LED is toggling when you push the button.

4 - Servo, Controlling a servo using the PWM library

In this task we will use Pulse-Width Modulation to control an analog servo. The PWM library uses one of the nRF52s TIMER peripheral in addition to the PPI and GPIOTE peripherals. The app_pwm library is documented on this Infocenter page.
Connecting the Servo to your nRF52 DK: The three wires coming from the SG90/SG92R Servo are:

  • Brown: Ground - Should be connected to one of the pins marked GND on your nRF52 DK.
  • Red: 5V Should be connected to the pin marked 5V on your nRF52 DK.
  • Orange: PWM Control Signal - Should be connected to one of the unused GPIO pins of the nRF52 DK (for example P0.04, pin number 4).
  1. The first thing we have to do is to include the header to the PWM library, app_pwm.h and create a PWM instance with the APP_PWM_INSTANCE macro that uses the TIMER2 peripheral.
  2. The second thing we need to do is to create the function pwm_init() where we configure, initialize and enable the PWM peripheral. You configure the PWM library by creating an app_pwm_config_t and pass it as a parameter to app_pwm_init where the following parameters must be specified:
  • pins: Array of two unsigned integers that indicate which physical pins will be used for the PWM output. In one-channel mode, the second element is ignored.
  • pin_polarity: 2-element array of app_pwm_polarity_t that indicates the output signal polarity. In one-channel mode, the second element is ignored.
  • num_of_channels: Number of PWM channels (1 or 2).
  • period_us: Signal period (in microseconds).

Hints:

  • The polarity can be set to either APP_PWM_POLARITY_ACTIVE_HIGH or APP_PWM_POLARITY_ACTIVE_LOW.
  • We only need one channel.
  • The second element of the pins array should be set to APP_PWM_NOPIN.
  • The period of the PWM pulse should be 20ms.
  1. The struct must be passed as an input to the app_pwm_init function which initializes the PWM library. After initializing the PWM library you have to enable the PWM instance by calling app_pwm_enable. Hints:
  • We do not need to provide an event handler function, i.e. you can pass NULL instead of a function pointer.
  • Make sure that you add pwm_init()to the main()function before the while loop.
  1. Now that we have initialized the PWM library you can set the duty cycle of the PWM signal to the servo using the app_pwm_channel_duty_set function. This will set the duty cycle of the PWM signal, i.e. the percentage of the total time the signal is high or low depending on the polarity that has been chosen. If we want to set the PWM signal to be high 50% of the time, then we call app_pwm_channel_duty_set with the following parameters:
while (app_pwm_channel_duty_set(&PWM, 0, 50) == NRF_ERROR_BUSY);

Make the servo sweep from its maximum angle to its minimum angle. This can be done by calling app_pwm_channel_duty_set() twice with a delay between the two calls in the main while-loop, as shown below.

    while (true)
    {
        while (app_pwm_channel_duty_set(&PWM, 0, 0) == NRF_ERROR_BUSY);
        nrf_delay_ms(1000);
        while (app_pwm_channel_duty_set(&PWM, 0, 0) == NRF_ERROR_BUSY);
        nrf_delay_ms(1000);
    }

The code snippet above sets the duty cycle to 0, you have to figure out the correct duty cycle values for the min and max angle.
Hint:

  • The pwm duty cycle for the lowest angle on the servo motor is 1000µs, while the pwm duty cycle for the highest angle on the servo motor is 2000µs. The angles between this should gradually increase as you increase the duty cycle from 1000µs to 2000µs. These numbers are according to the specification for the Tower Pro motor specification
    However I noticed that the min and max values on my motor is roughly 800µs and 2400µs, so experiment with different levels.
  1. Modify the button handler from Task 3 so that you can set the servo to its minimum and maximum angle by pressing the buttons on the nRF52 DK.

Challenge: If you want to control the Servo in smaller steps than 1% of the PWM period, look at what app_pwm_channel_duty_set() does, and see if you can set the PWM duty cycle in smaller steps.

5 - UART

Goal: Use the nRF52s UART peripheral and the UART library (app_uart) to echo data sent from a terminal. If you do not already have a favorite terminal application, then I recommend using Termite. The UART library is documented on this Infocenter page.

  1. Create the function uart_init where you use the APP_UART_FIFO_INITmacro to initialize the UART module. Remember to include the app_uart.h file near the top of your main.c file. The baudrate should be set to 115200, Flow Control should be disabled, no parity bits are used and the RX and TX buffers should be set to 256 in size. The UART pins of the nRF52 DK are listed on the backside of the board. See the UART example in the \examples\peripheral\uart\pca10040\blank\ses folder.
  2. Create the function uart_event_handler as shown below. We will modify it later in order to receive data from the terminal.
    void uart_event_handler(app_uart_evt_t * p_event)
    {
        /*
        You're not allowed to decleare variables inside switch-cases, 
        so any variables used in the switch-case must be declared here.
        */
        switch (p_event->evt_type)
        {
            case APP_UART_DATA_READY:
                /*  
                The received data is stored in a receive buffer and can be retrieved using app_uart_get.
                Data to be sent can be placed in the transmit buffer using app_uart_put.
                */
                break;

            case APP_UART_COMMUNICATION_ERROR:
                APP_ERROR_HANDLER(p_event->data.error_communication);
                break;

            case APP_UART_FIFO_ERROR:
                APP_ERROR_HANDLER(p_event->data.error_code);
                break;

            default:
                break;
        }
    }
  1. Create a function called uart_print() which takes a uint8_t array as input and sends this array to the terminal using the app_uart_put() function. Hints:
  • app_uart_put() places one character at the time in the uart transmit buffer, hence it should be called in a loop.
  • Strings sent to the terminal should be terminated by \r\n .
  • The strlen() function is very useful to find the length of a string terminated by \n. If you want to use this add the following to the top of your main.c file #include <string.h.
static void uart_print(uint8_t data_string[])
{
    
}
  1. Call the uart_print function in main() or in the button handler and verify that the message is shown in the terminal. If you do not have a uart terminal, Termite is a good choice for Windows.
  2. The APP_UART_DATA_READY event will be generated for each single byte that is received by the nRF52, which means that app_uart_get must be called everytime this event is received.
    case APP_UART_DATA_READY:
        app_uart_get(&data_array[index]);
        index++;
        
        break;

Since the app_uart_get() function takes the pointer to a uint8_t, we need an array to store the received byte and an index variable to keep track of how many bytes we have received, i.e.

    static uint8_t data_array[32];
    static uint8_t index = 0;

Most terminals append the \n character, also known as the Line Feed character, to the end of the string that is sent. The \n indicates that the next character should be printed on a newline. Therefore it makes sense to receive bytes until we see the \n character and then send the entire string back to the terminal using app_uart_put.

  if (data_array[index - 1] == '\n') 
  {
    // Call app_uart_put to sent the bytes stored in data_array back to the terminal.
  }

The function app_uart_put used to place data in the UART's transmit buffer must be called in a for-loop if more than one byte is to be sent, i.e.

    for (uint32_t i = 0; i < strlen((const char *)data_array); i++)
    {
        while (app_uart_put(data_array[i]) != NRF_SUCCESS);
    }

After adding the array to hold the data and the index to keep track of how many bytes we have received, adding the if statement and the for loop that calls app_uart_put(), the uart_event_handler function should look something like this:

    void uart_event_handler(app_uart_evt_t * p_event)
    {
        static uint8_t data_array[32];
        static uint8_t index = 0;

        switch (p_event->evt_type)
        {
            case APP_UART_DATA_READY:
                app_uart_get(&data_array[index]);
                index++;

                if (data_array[index - 1] == '\n') 
                {
                    for (uint32_t i = 0; i < strlen((const char *)data_array); i++)
                    {
                        while (app_uart_put(data_array[i]) != NRF_SUCCESS);
                    }
                    memset(data_array,0,sizeof(data_array));
                    index = 0;
                }
                break;

            case APP_UART_COMMUNICATION_ERROR:
                APP_ERROR_HANDLER(p_event->data.error_communication);
                break;

            case APP_UART_FIFO_ERROR:
                APP_ERROR_HANDLER(p_event->data.error_code);
                break;

            default:
                break;
        }
    }

The memset function is used to clear the data_array since it is decleared as static, i.e. it will not erase the content in between the calls to uart_event_handler. If we do not set data_array to 0 and receive a string that is shorter than the last string we received, then some of the old data will still be stored in the array.
6. Send a text string from the terminal to the nRF52 DK and verify that it is exhoed back to the terminal.

More challenges

If you want to look at some more challenges, including these subjects:

  • Temperature sensor
  • GPIOTE - GPIO Tasks and Events
  • TIMER - Timer/Counter
  • PPI - Programmable Peripheral Interconnect

You can go to Bjørns tutorial. Although you are now working on SDK15.3.0, and Bjørns tutorial is written for SDK14.1.0, the remaining parts of this tutorial should be compatible with SDK15.3.0 as well. Good luck.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published