1.2.1.16 SYS_MODULE_INIT Union
1.2.1.16 C
typedef union
{
uint8_t value;
struct
{
// Module-definable field, module-specific usage
uint8_t reserved : 4;
}sys;
} SYS_MODULE_INIT;
1.2.1.16 Summary
Initializes a module (including device drivers) as requested by the system.
1.2.1.16 Description
This structure provides the necessary data to initialize or reinitialize a module (including device drivers). The structure can be extended in a module specific way as to carry module specific initialization data.
1.2.1.16 Remarks
This structure is used in the device driver routines DRV_<module>_Initialize and DRV_<module>_Reinitialize that are defined by each device driver.
