;**** **** **** **** **** ; ; Bluejay digital ESC firmware for controlling brushless motors in multirotors ; ; Copyright 2020 Mathias Rasmussen ; Copyright 2011, 2012 Steffen Skaug ; ; This file is part of Bluejay. ; ; Bluejay 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. ; ; Bluejay 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 Bluejay. If not, see . ; ;**** **** **** **** **** ; ; Hardware definition file "U". ; MA MC CC MB RC L0 L1 L2 X Cc Bc Ac Cp Bp Ap X ; ;**** **** **** **** **** PWM_ACTIVE_HIGH EQU 1 ; Pwm non-inverted COMPWM_ACTIVE_HIGH EQU 1 ; Damping inverted ; Note: currently all comparator pins (Comp_ and Mux_) must be on the same port COMP_PORT EQU 0 ;********************* ; PORT 0 definitions * ;********************* A_Mux EQU 7 ;i C_Mux EQU 6 ;i Comp_Com EQU 5 ;i B_Mux EQU 4 ;i Rcp_In EQU 3 ;i LED_0 EQU 2 ;i LED_1 EQU 1 ;i LED_2 EQU 0 ;i P0_DIGITAL EQU NOT((1 SHL A_Mux) + (1 SHL B_Mux) + (1 SHL C_Mux) + (1 SHL Comp_Com)) P0_INIT EQU 0FFh P0_PUSHPULL EQU (1 SHL LED_0) + (1 SHL LED_1) + (1 SHL LED_2) P0_SKIP EQU 0FFh IF FETON_DELAY == 0 PCA0_POWER_MODULE EQU PCA0CPM0 PCA0_POWER_L EQU PCA0CPL0 PCA0_POWER_H EQU PCA0CPH0 PCA0_DAMP_MODULE EQU PCA0CPM1 PCA0_DAMP_L EQU PCA0CPL1 PCA0_DAMP_H EQU PCA0CPH1 ELSE PCA0_POWER_MODULE EQU PCA0CPM0 PCA0_POWER_L EQU PCA0CPL0 PCA0_POWER_H EQU PCA0CPH0 PCA0_DAMP_MODULE EQU PCA0CPM1 PCA0_DAMP_L EQU PCA0CPL1 PCA0_DAMP_H EQU PCA0CPH1 ENDIF ;********************* ; PORT 1 definitions * ;********************* ; EQU 7 ;i C_com EQU 6 ;o B_com EQU 5 ;o A_com EQU 4 ;o C_pwm EQU 3 ;i B_pwm EQU 2 ;o A_pwm EQU 1 ;o ; EQU 0 ;o P1_DIGITAL EQU (1 SHL A_pwm) + (1 SHL B_pwm) + (1 SHL C_pwm) + (1 SHL A_com) + (1 SHL B_com) + (1 SHL C_com) P1_INIT EQU 00h P1_PUSHPULL EQU (1 SHL A_pwm) + (1 SHL B_pwm) + (1 SHL C_pwm) + (1 SHL A_com) + (1 SHL B_com) + (1 SHL C_com) P1_SKIP EQU 0FFh ;********************* ; PORT 2 definitions * ;********************* DebugPin EQU 0 ;o P2_DIGITAL EQU (1 SHL DebugPin) P2_PUSHPULL EQU (1 SHL DebugPin) P2_SKIP EQU 0FFh ;**** **** **** **** **** ; LED configuration ;**** **** **** **** **** Set_LED_0 MACRO clr P0.LED_0 ENDM Clear_LED_0 MACRO setb P0.LED_0 ENDM Set_LED_1 MACRO clr P0.LED_1 ENDM Clear_LED_1 MACRO setb P0.LED_1 ENDM Set_LED_2 MACRO clr P0.LED_2 ENDM Clear_LED_2 MACRO setb P0.LED_2 ENDM Set_LED_3 MACRO ENDM Clear_LED_3 MACRO ENDM ;**** **** **** **** **** ; Inherit base layout ;**** **** **** **** **** $set(CUSTOM_LED) $include (Base.inc)