mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 08:36:14 +01:00
207 lines
5.4 KiB
C++
207 lines
5.4 KiB
C++
/*
|
|
* © 2023 Travis Farmer
|
|
* © 2023 Neil McKechnie
|
|
* © 2022-2023 Paul M. Antoine
|
|
* © 2021 Mike S
|
|
* © 2021, 2023 Harald Barth
|
|
* © 2021 Fred Decker
|
|
* © 2021 Chris Harlow
|
|
* © 2021 David Cutting
|
|
* All rights reserved.
|
|
*
|
|
* This file is part of Asbelos DCC API
|
|
*
|
|
* This 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.
|
|
*
|
|
* It 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 CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// ATTENTION: this file only compiles on a STM32 based boards
|
|
// Please refer to DCCTimer.h for general comments about how this class works
|
|
// This is to avoid repetition and duplication.
|
|
#if defined(ARDUINO_GIGA)
|
|
|
|
#include "DCCTimer.h"
|
|
#include "DIAG.h"
|
|
#include "GigaHardwareTimer.h"
|
|
#include <Arduino_AdvancedAnalog.h>
|
|
//#include "config.h"
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Experimental code for High Accuracy (HA) DCC Signal mode
|
|
// Warning - use of TIM2 and TIM3 can affect the use of analogWrite() function on certain pins,
|
|
// which is used by the DC motor types.
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
INTERRUPT_CALLBACK interruptHandler=0;
|
|
|
|
//HardwareTimer* timer = NULL;
|
|
//HardwareTimer* timerAux = NULL;
|
|
HardwareTimer timer(TIM3);
|
|
HardwareTimer timerAux(TIM2);
|
|
|
|
static bool tim2ModeHA = false;
|
|
static bool tim3ModeHA = false;
|
|
|
|
void DCCTimer_Handler() __attribute__((interrupt));
|
|
|
|
void DCCTimer_Handler() {
|
|
interruptHandler();
|
|
}
|
|
|
|
void DCCTimer::begin(INTERRUPT_CALLBACK callback) {
|
|
interruptHandler=callback;
|
|
noInterrupts();
|
|
|
|
// adc_set_sample_rate(ADC_SAMPLETIME_480CYCLES);
|
|
timer.pause();
|
|
timerAux.pause();
|
|
timer.setPrescaleFactor(1);
|
|
timer.setOverflow(DCC_SIGNAL_TIME, MICROSEC_FORMAT);
|
|
timer.attachInterrupt(DCCTimer_Handler);
|
|
timer.refresh();
|
|
timerAux.setPrescaleFactor(1);
|
|
timerAux.setOverflow(DCC_SIGNAL_TIME, MICROSEC_FORMAT);
|
|
timerAux.refresh();
|
|
|
|
timer.resume();
|
|
timerAux.resume();
|
|
|
|
interrupts();
|
|
}
|
|
|
|
bool DCCTimer::isPWMPin(byte pin) {
|
|
switch (pin) {
|
|
case 12:
|
|
return true;
|
|
case 13:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void DCCTimer::setPWM(byte pin, bool high) {
|
|
switch (pin) {
|
|
case 12:
|
|
if (!tim3ModeHA) {
|
|
timerAux.setMode(1, TIMER_OUTPUT_COMPARE_INACTIVE, 12);
|
|
tim3ModeHA = true;
|
|
}
|
|
if (high)
|
|
TIM3->CCMR1 = (TIM3->CCMR1 & ~TIM_CCMR1_OC1M_Msk) | TIM_CCMR1_OC1M_0;
|
|
else
|
|
TIM3->CCMR1 = (TIM3->CCMR1 & ~TIM_CCMR1_OC1M_Msk) | TIM_CCMR1_OC1M_1;
|
|
break;
|
|
case 13:
|
|
if (!tim2ModeHA) {
|
|
timer.setMode(1, TIMER_OUTPUT_COMPARE_INACTIVE, 13);
|
|
tim2ModeHA = true;
|
|
}
|
|
if (high)
|
|
TIM2->CCMR1 = (TIM2->CCMR1 & ~TIM_CCMR1_OC1M_Msk) | TIM_CCMR1_OC1M_0;
|
|
else
|
|
TIM2->CCMR1 = (TIM2->CCMR1 & ~TIM_CCMR1_OC1M_Msk) | TIM_CCMR1_OC1M_1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void DCCTimer::clearPWM() {
|
|
timer.setMode(1, TIMER_OUTPUT_COMPARE_INACTIVE, NC);
|
|
tim2ModeHA = false;
|
|
timerAux.setMode(1, TIMER_OUTPUT_COMPARE_INACTIVE, NC);
|
|
tim3ModeHA = false;
|
|
}
|
|
|
|
void DCCTimer::getSimulatedMacAddress(byte mac[6]) {
|
|
volatile uint32_t *serno1 = (volatile uint32_t *)UID_BASE;
|
|
volatile uint32_t *serno2 = (volatile uint32_t *)UID_BASE+4;
|
|
volatile uint32_t *serno3 = (volatile uint32_t *)UID_BASE+8;
|
|
volatile uint32_t m1 = *serno1;
|
|
volatile uint32_t m2 = *serno2;
|
|
volatile uint32_t m3 = *serno3;
|
|
mac[0] = 0xBE;
|
|
mac[1] = 0xEF;
|
|
mac[2] = m1 ^ m3 >> 24;
|
|
mac[3] = m1 ^ m3 >> 16;
|
|
mac[4] = m1 ^ m3 >> 8;
|
|
mac[5] = m1 ^ m3 >> 0;
|
|
//DIAG(F("MAC: %P:%P:%P:%P:%P:%P"),mac[0],mac[1],mac[2],mac[3],mac[4],mac[5]);
|
|
|
|
}
|
|
volatile int DCCTimer::minimum_free_memory=__INT_MAX__;
|
|
|
|
// Return low memory value...
|
|
int DCCTimer::getMinimumFreeMemory() {
|
|
noInterrupts(); // Disable interrupts to get volatile value
|
|
int retval = freeMemory();
|
|
interrupts();
|
|
return retval;
|
|
}
|
|
extern "C" char* sbrk(int incr);
|
|
|
|
int DCCTimer::freeMemory() {
|
|
|
|
char top;
|
|
unsigned int tmp = (unsigned int)(&top - reinterpret_cast<char*>(sbrk(0)));
|
|
return (int)(tmp / 1000);
|
|
}
|
|
|
|
void DCCTimer::reset() {
|
|
//Watchdog &watchdog = Watchdog::get_instance();
|
|
//Watchdog::stop();
|
|
//Watchdog::start(500);
|
|
|
|
//while(true) {};
|
|
}
|
|
|
|
int * ADCee::analogvals = NULL;
|
|
|
|
int16_t ADCee::ADCmax()
|
|
{
|
|
return 1023;
|
|
}
|
|
|
|
AdvancedADC adc(A0, A1);
|
|
int ADCee::init(uint8_t pin) {
|
|
adc.begin(AN_RESOLUTION_10, 16000, 1, 512);
|
|
return 123;
|
|
}
|
|
|
|
/*
|
|
* Read function ADCee::read(pin) to get value instead of analogRead(pin)
|
|
*/
|
|
int ADCee::read(uint8_t pin, bool fromISR) {
|
|
static SampleBuffer buf = adc.read();
|
|
int retVal = -123;
|
|
if (adc.available()) {
|
|
buf.release();
|
|
buf = adc.read();
|
|
}
|
|
return (buf[pin - A0]);
|
|
}
|
|
|
|
/*
|
|
* Scan function that is called from interrupt
|
|
*/
|
|
#pragma GCC push_options
|
|
#pragma GCC optimize ("-O3")
|
|
void ADCee::scan() {
|
|
}
|
|
#pragma GCC pop_options
|
|
|
|
void ADCee::begin() {
|
|
noInterrupts();
|
|
|
|
interrupts();
|
|
}
|
|
#endif
|