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

120 lines
3.7 KiB
C
Raw Normal View History

2017-06-17 23:19:42 +02:00
/**
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2017-06-17 23:19:42 +02:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2017-06-17 23:19:42 +02:00
*
* 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
2017-06-17 23:19:42 +02:00
/**
2017-11-18 09:08:03 +01:00
* Fast I/O Routines for LPC1768/9
* Use direct port manipulation to save scads of processor time.
* Contributed by Triffid_Hunter and modified by Kliment, thinkyhead, Bob-the-Kuhn, et.al.
*/
2017-06-17 23:19:42 +02:00
/**
* Description: Fast IO functions LPC1768
*
* For TARGET LPC1768
*/
2019-05-02 07:45:50 +02:00
#include "../shared/Marduino.h"
2017-06-17 23:19:42 +02:00
2019-05-22 01:28:12 +02:00
#define PWM_PIN(P) true // all pins are PWM capable
#define LPC_PIN(pin) LPC176x::gpio_pin(pin)
#define LPC_GPIO(port) LPC176x::gpio_port(port)
2017-06-17 23:19:42 +02:00
#define SET_DIR_INPUT(IO) LPC176x::gpio_set_input(IO)
#define SET_DIR_OUTPUT(IO) LPC176x::gpio_set_output(IO)
2017-06-17 23:19:42 +02:00
2019-03-13 02:39:55 +01:00
#define SET_MODE(IO, mode) pinMode(IO, mode)
2017-06-17 23:19:42 +02:00
#define WRITE_PIN_SET(IO) LPC176x::gpio_set(IO)
#define WRITE_PIN_CLR(IO) LPC176x::gpio_clear(IO)
2017-06-17 23:19:42 +02:00
#define READ_PIN(IO) LPC176x::gpio_get(IO)
#define WRITE_PIN(IO,V) LPC176x::gpio_set(IO, V)
2017-06-17 23:19:42 +02:00
/**
2017-11-18 09:08:03 +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 https://gcc.gnu.org/onlinedocs/gcc-4.8.5/cpp/Stringification.html
2017-11-18 09:08:03 +01:00
*/
2017-06-17 23:19:42 +02:00
/// Read a pin
2019-03-13 02:39:55 +01:00
#define _READ(IO) READ_PIN(IO)
2017-06-17 23:19:42 +02:00
/// Write to a pin
2019-03-13 02:39:55 +01:00
#define _WRITE(IO,V) WRITE_PIN(IO,V)
2017-06-17 23:19:42 +02:00
/// toggle a pin
2019-03-13 02:39:55 +01:00
#define _TOGGLE(IO) _WRITE(IO, !READ(IO))
2017-06-17 23:19:42 +02:00
/// set pin as input
2019-03-13 02:39:55 +01:00
#define _SET_INPUT(IO) SET_DIR_INPUT(IO)
2017-06-17 23:19:42 +02:00
/// set pin as output
2019-03-13 02:39:55 +01:00
#define _SET_OUTPUT(IO) SET_DIR_OUTPUT(IO)
2017-06-17 23:19:42 +02: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)
2017-06-17 23:19:42 +02: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)
2017-06-17 23:19:42 +02:00
/// check if pin is an input
#define _IS_INPUT(IO) (!LPC176x::gpio_get_dir(IO))
2017-06-17 23:19:42 +02:00
/// check if pin is an output
#define _IS_OUTPUT(IO) (LPC176x::gpio_get_dir(IO))
2017-06-17 23:19:42 +02:00
/// Read a pin wrapper
2019-03-13 02:39:55 +01:00
#define READ(IO) _READ(IO)
2017-06-17 23:19:42 +02:00
/// Write to a pin wrapper
2019-03-13 02:39:55 +01:00
#define WRITE(IO,V) _WRITE(IO,V)
2017-06-17 23:19:42 +02:00
/// toggle a pin wrapper
2019-03-13 02:39:55 +01:00
#define TOGGLE(IO) _TOGGLE(IO)
2017-06-17 23:19:42 +02:00
/// set pin as input wrapper
2019-03-13 02:39:55 +01:00
#define SET_INPUT(IO) _SET_INPUT(IO)
2017-06-17 23:19:42 +02: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)
/// 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)
2017-12-22 18:03:22 +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 SET_OUTPUT
2017-06-17 23:19:42 +02:00
/// check if pin is an input wrapper
#define IS_INPUT(IO) _IS_INPUT(IO)
2017-06-17 23:19:42 +02:00
/// check if pin is an output wrapper
#define IS_OUTPUT(IO) _IS_OUTPUT(IO)
2017-06-17 23:19:42 +02: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)