Skip to content

Commit

Permalink
chore: add sscma examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nullptr committed Mar 15, 2024
1 parent d642837 commit 0cafc16
Show file tree
Hide file tree
Showing 131 changed files with 43,517 additions and 1 deletion.
98 changes: 98 additions & 0 deletions EPII_CM55M_APP_S/app/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,101 @@ int main(void)
return 0;
}
#endif

#ifdef ALLON_SENSOR
#include "allon_sensor.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef ALLON_SENSOR_MIPI
#include "allon_sensor_mipi.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef PDM_SINGLE
#include "pdm_single.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef INTERNAL_PULL
#include "set_internal_pull.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef SCENARIO_I2CS_CUST_INT
#include "i2cs_cust_int.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef SDIO_APP
#include "sdio_app.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef SEEED_SAMPLE
#include "seeed_sample.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef SSCMA_NETWORK
#include "sscma_network.h"

/** main entry */
int main(void) {
board_init();
app_main();
return 0;
}
#endif

#ifdef SSCMA
#include "sscma.h"

int main(void) {
board_init();
app_main();
return 0;
}
#endif
Loading

0 comments on commit 0cafc16

Please sign in to comment.