Minor core header cleanups
This commit is contained in:
parent
ad37abda8b
commit
2c1b1ab141
3 changed files with 4 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
*~
|
||||
*#
|
||||
.#*
|
||||
GPATH
|
||||
GRTAGS
|
||||
GTAGS
|
||||
|
@ -8,3 +9,4 @@ firmware
|
|||
.gdb_history
|
||||
local.mk
|
||||
local.h
|
||||
screenlog.*
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#define UNUSED __attributed((unused))
|
||||
|
||||
#ifndef BIT
|
||||
#define BIT(X) (1<<X)
|
||||
#define BIT(X) (1<<(X))
|
||||
#endif
|
||||
|
||||
/* Use this macro to store constant values in IROM flash instead
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
* BSD Licensed as described in the file LICENSE
|
||||
*/
|
||||
#ifndef _ESP_GPIO_H
|
||||
#define _ESP_GPIO_H
|
||||
#include <stdbool.h>
|
||||
#include "esp/registers.h"
|
||||
#include "esp/iomux.h"
|
||||
|
|
Loading…
Reference in a new issue