You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting to a point where driver API can be standardized in a nice way. This will break existing ABI and will be rc v0.3.0. This will likely be the final RC.
I am leaning towards the following design:
Example ADC Driver
adc_config_t// All drivers have a configuration structadc_t// All drivers have a driver struct// All driver inits return an error code defined in inc/error.h. An error header will be provided. This could be chained with a pre-initialized watchdog timer for performing actions on failed initialization.Error_tadc_init(adc_config_tconfig, adc_t*adc);
...
We'll also swap the linux kernel coding conventions, since TM4CDrivers will eventually be extended into TM4CRTOS...
The text was updated successfully, but these errors were encountered:
Getting to a point where driver API can be standardized in a nice way. This will break existing ABI and will be rc v0.3.0. This will likely be the final RC.
I am leaning towards the following design:
Example ADC Driver
We'll also swap the linux kernel coding conventions, since TM4CDrivers will eventually be extended into TM4CRTOS...
The text was updated successfully, but these errors were encountered: