targets.c 440 B

1234567891011121314
  1. #include "string.h"
  2. #include "esp_log.h"
  3. #include "targets.h"
  4. static const char * TAG = "targets";
  5. const struct target_s *target_set[] = { &target_muse, NULL };
  6. void target_init(char *target) {
  7. ESP_LOGI(TAG,"Checking if target %s needs init",target);
  8. for (int i = 0; *target && target_set[i]; i++) if (strcasestr(target_set[i]->model, target)) {
  9. ESP_LOGI(TAG,"Initializing target %s ",target);
  10. target_set[i]->init();
  11. break;
  12. }
  13. }