finish remapping

- actrls_brd config renamed actrls_config
- get rid of static board definitions
- allow JSON config string to only initialize what it needs
- add control_hook
This commit is contained in:
philippe44
2020-01-17 20:29:14 -08:00
parent 4dbed9ecb4
commit b8570ebce3
8 changed files with 86 additions and 92 deletions

View File

@@ -78,6 +78,7 @@ static void * malloc_fn(size_t sz){
}
return ptr;
}
/*
static void * free_fn(void * ptr){
if(ptr!=NULL){
heap_caps_free(ptr);
@@ -87,6 +88,7 @@ static void * free_fn(void * ptr){
}
return NULL;
}
*/
#endif
void init_cJSON(){
static cJSON_Hooks hooks;