You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
C
63 lines
1.3 KiB
C
4 years ago
|
/*
|
||
|
* Code generated from Atmel Start.
|
||
|
*
|
||
|
* This file will be overwritten when reconfiguring your Atmel Start project.
|
||
|
* Please copy examples or other code you want to keep to a separate file
|
||
|
* to avoid losing it when reconfiguring.
|
||
|
*/
|
||
|
#ifndef DRIVER_INIT_INCLUDED
|
||
|
#define DRIVER_INIT_INCLUDED
|
||
|
|
||
|
#include "atmel_start_pins.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <hal_atomic.h>
|
||
|
#include <hal_delay.h>
|
||
|
#include <hal_gpio.h>
|
||
|
#include <hal_init.h>
|
||
|
#include <hal_io.h>
|
||
|
#include <hal_sleep.h>
|
||
|
|
||
|
#include <hal_calendar.h>
|
||
|
|
||
|
#include <hal_usart_sync.h>
|
||
|
#include <hal_spi_m_sync.h>
|
||
|
|
||
|
#include <hal_mci_sync.h>
|
||
|
|
||
|
extern struct calendar_descriptor CALENDER_INTERFACE;
|
||
|
|
||
|
extern struct usart_sync_descriptor USART_0;
|
||
|
extern struct spi_m_sync_descriptor SPI_0;
|
||
|
|
||
|
extern struct mci_sync_desc IO_BUS;
|
||
|
|
||
|
void CALENDER_INTERFACE_CLOCK_init(void);
|
||
|
void CALENDER_INTERFACE_init(void);
|
||
|
|
||
|
void USART_0_PORT_init(void);
|
||
|
void USART_0_CLOCK_init(void);
|
||
|
void USART_0_init(void);
|
||
|
|
||
|
void SPI_0_PORT_init(void);
|
||
|
void SPI_0_CLOCK_init(void);
|
||
|
void SPI_0_init(void);
|
||
|
|
||
|
void IO_BUS_PORT_init(void);
|
||
|
void IO_BUS_CLOCK_init(void);
|
||
|
void IO_BUS_init(void);
|
||
|
|
||
|
/**
|
||
|
* \brief Perform system initialization, initialize pins and clocks for
|
||
|
* peripherals
|
||
|
*/
|
||
|
void system_init(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif // DRIVER_INIT_INCLUDED
|