mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7ca2e874e1
This PR converts tabs to white spaces. The statement I used for the conversion: '''find . -name "*.[ch]" -exec zsh -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;''' Afterwards, I had a quick overview of the converted files to prevent odd indentation.
12 lines
256 B
C
12 lines
256 B
C
#ifndef BUTTONS_H
|
|
#define BUTTONS_H
|
|
|
|
// Button ports
|
|
#define BUTTON_STAR_PIN (BIT2)
|
|
#define BUTTON_NUM_PIN (BIT1)
|
|
#define BUTTON_UP_PIN (BIT4)
|
|
#define BUTTON_DOWN_PIN (BIT0)
|
|
#define BUTTON_BACKLIGHT_PIN (BIT3)
|
|
|
|
#endif
|