feature (drivers API): implemented 'nx_drv_log'

This commit is contained in:
antifallobst 2023-06-01 19:40:52 +02:00
parent 2902215904
commit e69065f889
1 changed files with 4 additions and 0 deletions

View File

@ -23,4 +23,8 @@ void nx_drv_fs_config(driver_config_fs_T* config) {
if (driver == NULL) return;
driver_init(driver, DRIVER_TRANSPORT_FS, (conf_U)config);
}
void nx_drv_log(string_t string) {
log(LOG_INFO, "DRIVER -> %s", string);
}