* fix multithread logic * more buffer for dallas id string * update apps to use new logic * delay_us small speedup * add consant qualifier to gpio records and some core api * fix some apps to use simpler method of getting gpio record * fix ibutton app, stupid stack problem
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "api-hal-gpio.h"
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
// init GPIO
 | 
						|
void hal_gpio_init(
 | 
						|
    const GpioPin* gpio,
 | 
						|
    const GpioMode mode,
 | 
						|
    const GpioPull pull,
 | 
						|
    const GpioSpeed speed) {
 | 
						|
    // TODO more mode
 | 
						|
    if(gpio->pin != 0) {
 | 
						|
        switch(mode) {
 | 
						|
        case GpioModeInput:
 | 
						|
            printf("[GPIO] %s%d input\n", gpio->port, gpio->pin);
 | 
						|
            break;
 | 
						|
 | 
						|
        case GpioModeOutputPushPull:
 | 
						|
            printf("[GPIO] %s%d push pull\n", gpio->port, gpio->pin);
 | 
						|
            break;
 | 
						|
 | 
						|
        case GpioModeOutputOpenDrain:
 | 
						|
            printf("[GPIO] %s%d open drain\n", gpio->port, gpio->pin);
 | 
						|
            break;
 | 
						|
 | 
						|
        default:
 | 
						|
            printf("[GPIO] %s%d mode %d unsupported\n", gpio->port, gpio->pin, mode);
 | 
						|
            break;
 | 
						|
        }
 | 
						|
    } else {
 | 
						|
        printf("[GPIO] no pin\n");
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// write value to GPIO, false = LOW, true = HIGH
 | 
						|
void hal_gpio_write(const GpioPin* gpio, const bool state) {
 | 
						|
    if(gpio->pin != 0) {
 | 
						|
        if(state) {
 | 
						|
            printf("[GPIO] %s%d on\n", gpio->port, gpio->pin);
 | 
						|
        } else {
 | 
						|
            printf("[GPIO] %s%d off\n", gpio->port, gpio->pin);
 | 
						|
        }
 | 
						|
    } else {
 | 
						|
        printf("[GPIO] no pin\n");
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// read value from GPIO, false = LOW, true = HIGH
 | 
						|
bool hal_gpio_read(const GpioPin* gpio) {
 | 
						|
    // TODO emulate pin state?
 | 
						|
    return false;
 | 
						|
}
 |