IoT Drivers  v3.3.0 (S2022)
Engineering in Software Technology
Functions to initialize the driver.

How to initialise the driver. More...

Collaboration diagram for Functions to initialize the driver.:

Functions

void display_7seg_initialise (void(*displayDoneCallBack)(void))
 Initialise the 7-segment Display driver. More...
 

Detailed Description

How to initialise the driver.

Function Documentation

◆ display_7seg_initialise()

void display_7seg_initialise ( void(*)(void)  displayDoneCallBack)

Initialise the 7-segment Display driver.

Initialise the driver.

Note
When the driver is created the display will be in power-down mode
See also
display_7seg_power_up and
display_7seg_power_down.
Note
For use with FreeRTOS: The driver must be initialised display_7seg_initialise before the scheduler in FreeRTOS is started!!
Parameters
[in]displayDoneCallBackfunction pointer to call back function, or NULL if no call back function is used.

The Call back function will be called each time the display driver releases the SPI bus. This allows other drivers to use the driver.

The call back function must have this signature:

void function_name(void)