/* * This file is part of the canusb project. * Copyright 2023 Edward V. Emelianov . * * 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 . */ #pragma once #include // LEDS: 0 - PB0, 1 - PB1, hearbeat - PA6 // LED0 #define LED0_port GPIOB #define LED0_pin (1<<0) // LED1 #define LED1_port GPIOB #define LED1_pin (1<<1) // HB #define LEDhb_port GPIOA #define LEDhb_pin (1<<6) #define LED_blink(x) do{if(ledsON) pin_toggle(x ## _port, x ## _pin);}while(0) #define LED_on(x) do{if(ledsON) pin_clear(x ## _port, x ## _pin);}while(0) #define LED_off(x) do{pin_set(x ## _port, x ## _pin);}while(0) extern volatile uint32_t Tms; extern uint8_t ledsON; void hw_setup();