board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Rakendra Thapa <rakendrathapa@gmail.com>
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser General
5  * Public License v2.1. See the file LICENSE in the top level directory for more
6  * details.
7  */
8 
9 #pragma once
10 
21 #include "cpu.h"
22 #include "periph/uart.h"
23 #include "periph/timer.h"
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
33 #define BTN0_PIN GPIO_PIN(5, 4)
34 #define BTN1_PIN GPIO_PIN(5, 0)
35 
36 #define BTN0_MODE GPIO_IN_PU
37 #define BTN1_MODE GPIO_IN_PU
44 #define LED0_PIN GPIO_PIN(5, 1)
45 #define LED1_PIN GPIO_PIN(5, 2)
46 #define LED2_PIN GPIO_PIN(5, 3)
47 
52 #define LED_PORT() (GPIO_PORTF_DATA_R)
53 #define LED0_MASK (1 << 7)
54 #define LED1_MASK (1 << 2)
55 #define LED2_MASK (1 << 1)
56 
57 #define LED0_ON (LED_PORT() |= LED0_MASK)
58 #define LED0_OFF (LED_PORT() &= ~LED0_MASK)
59 #define LED0_TOGGLE (LED_PORT() ^= LED0_MASK)
60 
61 #define LED1_ON (LED_PORT() |= LED1_MASK)
62 #define LED1_OFF (LED_PORT() &= ~LED1_MASK)
63 #define LED1_TOGGLE (LED_PORT() ^= LED1_MASK)
64 
65 #define LED2_ON (LED_PORT() |= LED2_MASK)
66 #define LED2_OFF (LED_PORT() &= ~LED2_MASK)
67 #define LED2_TOGGLE (LED_PORT() ^= LED2_MASK)
74 #define CONFIG_ZTIMER_USEC_TYPE ZTIMER_TYPE_PERIPH_TIMER
75 #define CONFIG_ZTIMER_USEC_DEV TIMER_DEV(0)
76 #define CONFIG_ZTIMER_USEC_MIN (8)
79 #ifdef __cplusplus
80 }
81 #endif
82 
Low-level timer peripheral driver interface definitions.
Low-level UART peripheral driver interface definition.