Firmware2/Marlin/src/HAL/HAL_LINUX/fastio.h

130 lines
4.1 KiB
C
Raw Normal View History

2019-02-23 02:09:10 +01:00
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#pragma once
/**
* Fast I/O Routines for X86_64
*/
#include <Arduino.h>
#include <pinmapping.h>
2019-03-13 02:39:55 +01:00
#define SET_DIR_INPUT(IO) Gpio::setDir(IO, 1)
#define SET_DIR_OUTPUT(IO) Gpio::setDir(IO, 0)
2019-02-23 02:09:10 +01:00
2019-03-13 02:39:55 +01:00
#define SET_MODE(IO, mode) Gpio::setMode(IO, mode)
2019-02-23 02:09:10 +01:00
2019-03-13 02:39:55 +01:00
#define WRITE_PIN_SET(IO) Gpio::set(IO)
#define WRITE_PIN_CLR(IO) Gpio::clear(IO)
2019-02-23 02:09:10 +01:00
2019-03-13 02:39:55 +01:00
#define READ_PIN(IO) Gpio::get(IO)
#define WRITE_PIN(IO,V) Gpio::set(IO, V)
2019-02-23 02:09:10 +01:00
/**
* Magic I/O routines
*
* Now you can simply SET_OUTPUT(STEP); WRITE(STEP, HIGH); WRITE(STEP, LOW);
*
* Why double up on these macros? see http://gcc.gnu.org/onlinedocs/cpp/Stringification.html
*/
/// Read a pin
2019-03-13 02:39:55 +01:00
#define _READ(IO) READ_PIN(IO)
2019-02-23 02:09:10 +01:00
/// Write to a pin
2019-03-13 02:39:55 +01:00
#define _WRITE_VAR(IO,V) digitalWrite(IO,V)
2019-02-23 02:09:10 +01:00
2019-03-13 02:39:55 +01:00
#define _WRITE(IO,V) WRITE_PIN(IO,V)
2019-02-23 02:09:10 +01:00
/// toggle a pin
2019-03-13 02:39:55 +01:00
#define _TOGGLE(IO) _WRITE(IO, !READ(IO))
2019-02-23 02:09:10 +01:00
/// set pin as input
2019-03-13 02:39:55 +01:00
#define _SET_INPUT(IO) SET_DIR_INPUT(IO)
2019-02-23 02:09:10 +01:00
/// set pin as output
2019-03-13 02:39:55 +01:00
#define _SET_OUTPUT(IO) SET_DIR_OUTPUT(IO)
2019-02-23 02:09:10 +01:00
/// set pin as input with pullup mode
2019-03-13 02:39:55 +01:00
#define _PULLUP(IO,V) pinMode(IO, (V) ? INPUT_PULLUP : INPUT)
2019-02-23 02:09:10 +01:00
/// set pin as input with pulldown mode
2019-03-13 02:39:55 +01:00
#define _PULLDOWN(IO,V) pinMode(IO, (V) ? INPUT_PULLDOWN : INPUT)
2019-02-23 02:09:10 +01:00
// hg42: all pins can be input or output (I hope)
// hg42: undefined pins create compile error (IO, is no pin)
// hg42: currently not used, but was used by pinsDebug
/// check if pin is an input
2019-03-13 02:39:55 +01:00
#define _GET_INPUT(IO) (LPC1768_PIN_PIN(IO) >= 0)
2019-02-23 02:09:10 +01:00
/// check if pin is an output
2019-03-13 02:39:55 +01:00
#define _GET_OUTPUT(IO) (LPC1768_PIN_PIN(IO) >= 0)
2019-02-23 02:09:10 +01:00
// hg42: GET_TIMER is used only to check if it's a PWM pin
// hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
// hg42: instead use PWM bit from the #define
/// check if pin is a timer
2019-03-13 02:39:55 +01:00
#define _GET_TIMER(IO) true // could be LPC1768_PIN_PWM(IO), but there
2019-02-23 02:09:10 +01:00
// hg42: could be this:
// #define _GET_TIMER(IO) LPC1768_PIN_PWM(IO)
// but this is an incomplete check (12 pins are PWMable, but only 6 can be used at the same time)
/// Read a pin wrapper
2019-03-13 02:39:55 +01:00
#define READ(IO) _READ(IO)
2019-02-23 02:09:10 +01:00
/// Write to a pin wrapper
2019-03-13 02:39:55 +01:00
#define WRITE_VAR(IO,V) _WRITE_VAR(IO,V)
#define WRITE(IO,V) _WRITE(IO,V)
2019-02-23 02:09:10 +01:00
/// toggle a pin wrapper
2019-03-13 02:39:55 +01:00
#define TOGGLE(IO) _TOGGLE(IO)
2019-02-23 02:09:10 +01:00
/// set pin as input wrapper
2019-03-13 02:39:55 +01:00
#define SET_INPUT(IO) _SET_INPUT(IO)
2019-02-23 02:09:10 +01:00
/// set pin as input with pullup wrapper
2019-03-13 02:39:55 +01:00
#define SET_INPUT_PULLUP(IO) do{ _SET_INPUT(IO); _PULLUP(IO, HIGH); }while(0)
2019-02-23 02:09:10 +01:00
/// set pin as input with pulldown wrapper
2019-03-13 02:39:55 +01:00
#define SET_INPUT_PULLDOWN(IO) do{ _SET_INPUT(IO); _PULLDOWN(IO, HIGH); }while(0)
2019-02-23 02:09:10 +01:00
/// set pin as output wrapper - reads the pin and sets the output to that value
2019-03-13 02:39:55 +01:00
#define SET_OUTPUT(IO) do{ _WRITE(IO, _READ(IO)); _SET_OUTPUT(IO); }while(0)
// set pin as PWM
#define SET_PWM(IO) SET_OUTPUT(IO)
2019-02-23 02:09:10 +01:00
/// check if pin is an input wrapper
2019-03-13 02:39:55 +01:00
#define GET_INPUT(IO) _GET_INPUT(IO)
2019-02-23 02:09:10 +01:00
/// check if pin is an output wrapper
2019-03-13 02:39:55 +01:00
#define GET_OUTPUT(IO) _GET_OUTPUT(IO)
2019-02-23 02:09:10 +01:00
/// check if pin is a timer (wrapper)
2019-03-13 02:39:55 +01:00
#define GET_TIMER(IO) _GET_TIMER(IO)
2019-02-23 02:09:10 +01:00
// Shorthand
2019-03-13 02:39:55 +01:00
#define OUT_WRITE(IO,V) do{ SET_OUTPUT(IO); WRITE(IO,V); }while(0)
// digitalRead/Write wrappers
#define extDigitalRead(IO) digitalRead(IO)
#define extDigitalWrite(IO,V) digitalWrite(IO,V)
#define USEABLE_HARDWARE_PWM(P) PWM_PIN(P)