atmel_start.c 164 B

12345678910
  1. #include <atmel_start.h>
  2. /**
  3. * Initializes MCU, drivers and middleware in the project
  4. **/
  5. void atmel_start_init(void)
  6. {
  7. system_init();
  8. ethernet_phys_init();
  9. }