gpio: Change gpio_write argument to bool

This commit is contained in:
Angus Gratton 2015-07-29 10:34:28 +10:00
parent 9c7c94f96d
commit 28fdebee92
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@
*/ */
#ifndef _ESP_CPU_H #ifndef _ESP_CPU_H
#define _ESP_CPU_H #define _ESP_CPU_H
#include <stdbool.h>
/* Interrupt numbers for level 1 exception handler. /* Interrupt numbers for level 1 exception handler.
* *

View file

@ -69,7 +69,7 @@ INLINED void gpio_disable(const uint8_t gpio_num)
* *
* Only works if pin has been set to GPIO_OUTPUT via gpio_enable() * Only works if pin has been set to GPIO_OUTPUT via gpio_enable()
*/ */
INLINED void gpio_write(const uint8_t gpio_num, const uint32_t set) INLINED void gpio_write(const uint8_t gpio_num, const bool set)
{ {
if(set) if(set)
GPIO_OUT_SET = BIT(gpio_num); GPIO_OUT_SET = BIT(gpio_num);