1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/DCCRMT.h

62 lines
1.8 KiB
C
Raw Normal View History

2021-11-14 13:10:16 +01:00
/*
2022-08-01 22:56:56 +02:00
* © 2021-2022, Harald Barth.
2021-11-14 13:10:16 +01:00
*
* This file is part of DCC-EX
*
* 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/>.
*/
#pragma once
#include <Arduino.h>
2021-11-22 03:24:15 +01:00
#if defined(ARDUINO_ARCH_ESP32)
2021-11-14 13:10:16 +01:00
#include "driver/rmt.h"
#include "soc/rmt_reg.h"
#include "soc/rmt_struct.h"
2021-11-19 00:03:21 +01:00
// make calculations easy and set up for microseconds
#define RMT_CLOCK_DIVIDER 80
#define DCC_1_HALFPERIOD 58 //4640 // 1 / 80000000 * 4640 = 58us
#define DCC_0_HALFPERIOD 100 //8000
2021-11-14 13:10:16 +01:00
2021-11-22 03:55:00 +01:00
class RMTChannel {
2021-11-14 13:10:16 +01:00
public:
2022-07-30 21:11:51 +02:00
RMTChannel(byte pin, bool isMain);
2021-11-15 22:28:30 +01:00
void IRAM_ATTR RMTinterrupt();
void RMTprefill();
//int RMTfillData(dccPacket packet);
int RMTfillData(const byte buffer[], byte byteCount, byte repeatCount);
inline bool busy() {
if (dataRepeat > 0) // we have still old work to do
return true;
return dataReady;
};
2021-11-15 22:28:30 +01:00
2021-11-14 14:48:32 +01:00
private:
2021-11-14 13:10:16 +01:00
rmt_channel_t channel;
// 3 types of data to send, preamble and then idle or data
// if this is prog track, idle will contain reset instead
rmt_item32_t *idle;
byte idleLen;
rmt_item32_t *preamble;
byte preambleLen;
2021-11-15 22:28:30 +01:00
rmt_item32_t *data;
byte dataLen;
2021-11-15 23:10:23 +01:00
byte maxDataLen;
2021-11-14 13:10:16 +01:00
// flags
2021-11-15 22:28:30 +01:00
volatile bool dataReady = false; // do we have real data available or send idle
volatile byte dataRepeat = 0;
2021-11-14 13:10:16 +01:00
};
2021-11-22 03:24:15 +01:00
#endif //ESP32