enocean2 2.0.0.0
main.c File Reference

EnOcean2 Click example. More...

#include "board.h"
#include "log.h"
#include "enocean2.h"
#include "string.h"

Macros

#define PROCESS_COUNTER   10
 
#define PROCESS_RX_BUFFER_SIZE   200
 

Functions

void application_init (void)
 
void application_task (void)
 
int main (void)
 

Variables

uint8_t rx_buffer [PROCESS_RX_BUFFER_SIZE] = { 0 }
 
uint8_t data_buffer [PROCESS_RX_BUFFER_SIZE] = { 0 }
 
char uart_rx_buffer [PROCESS_RX_BUFFER_SIZE] = { 0 }
 

Detailed Description

EnOcean2 Click example.

Description

This example reads and processes data from EnOcean 2 clicks.

The demo application is composed of two sections :

Application Init

Initializes driver init and initializes chip and sets callback handler.

Application Task

It checks if a switch is pressed, and logs an appropriate message to the uart terminal.

Additional Function

  • enocean2_process ( ) - The general process of collecting data the module sends.
  • callback_handler ( enocean2_packet_t *packet ) - Checks if a new response message is ready and executes a response message parsing. Once the response parsing is done, shows the response message on the uart terminal.
  • decode_command ( uint8_t cmd ) - Detect which of the 4 buttons is pressed.
Author
MikroE Team

Macro Definition Documentation

◆ PROCESS_COUNTER

#define PROCESS_COUNTER   10

◆ PROCESS_RX_BUFFER_SIZE

#define PROCESS_RX_BUFFER_SIZE   200

Function Documentation

◆ application_init()

void application_init ( void )

Logger initialization. Default baud rate: 115200 Default log level: LOG_LEVEL_DEBUG

Note
If USB_UART_RX and USB_UART_TX are defined as HAL_PIN_NC, you will need to define them manually for log to work. See LOG_MAP_USB_UART macro definition for detailed explanation.

◆ application_task()

void application_task ( void )

◆ main()

int main ( void )

Variable Documentation

◆ data_buffer

uint8_t data_buffer[PROCESS_RX_BUFFER_SIZE] = { 0 }

◆ rx_buffer

uint8_t rx_buffer[PROCESS_RX_BUFFER_SIZE] = { 0 }

◆ uart_rx_buffer

char uart_rx_buffer[PROCESS_RX_BUFFER_SIZE] = { 0 }