57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
/*
|
|
* This file is part of the libopencm3 project.
|
|
*
|
|
* Copyright (C) 2015 Felix Held <felix-libopencm3@felixheld.de>
|
|
*
|
|
* This library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LIBOPENCM3_PERIPH_H
|
|
#define LIBOPENCM3_PERIPH_H
|
|
|
|
/* --- Peripheral Identifiers ---------------------------------------------- */
|
|
#define PERIPH_SUPC 0
|
|
#define PERIPH_RSTC 1
|
|
#define PERIPH_RTC 2
|
|
#define PERIPH_RTT 3
|
|
#define PERIPH_WDG 4
|
|
#define PERIPH_PMC 5
|
|
#define PERIPH_EEFC0 6
|
|
#define PERIPH_EEFC1 7
|
|
#define PERIPH_UART 8
|
|
#define PERIPH_SMC 9
|
|
#define PERIPH_PIOA 10
|
|
#define PERIPH_PIOB 11
|
|
#define PERIPH_PIOC 12
|
|
#define PERIPH_USART0 13
|
|
#define PERIPH_USART1 14
|
|
#define PERIPH_USART2 15
|
|
#define PERIPH_USART3 16
|
|
#define PERIPH_HSMCI 17
|
|
#define PERIPH_TWI0 18
|
|
#define PERIPH_TWI1 19
|
|
#define PERIPH_SPI 20
|
|
#define PERIPH_SSC 21
|
|
#define PERIPH_TC0 22
|
|
#define PERIPH_TC1 23
|
|
#define PERIPH_TC2 24
|
|
#define PERIPH_PWM 25
|
|
#define PERIPH_ADC12B 26
|
|
#define PERIPH_ADC 27
|
|
#define PERIPH_DMAC 28
|
|
#define PERIPH_UDPHS 29
|
|
|
|
|
|
#endif
|