/* * Copyright (C) 2019 Kai Ludwig, DG4KLU * Copyright (C) 2020-2025 Roger Clark, VK3KYY / G4KYF * Daniel Caujolle-Bert, F1RMB * * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * 4. Use of this source code or binary releases for commercial purposes is strictly forbidden. This includes, without limitation, * incorporation in a commercial product or incorporation into a product or project which allows commercial use. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #ifndef _OPENGD77_HR_C6000_H_ #define _OPENGD77_HR_C6000_H_ #include #include #include "io/keyboard.h" #include "interfaces/hr-c6000_spi.h" #include "dmr_codec/codec.h" #include "interfaces/wdog.h" #include "functions/ticks.h" extern Task_t hrc6000Task; #define DMR_FRAME_BUFFER_SIZE 64 #define AMBE_AUDIO_LENGTH 27 #define LC_DATA_LENGTH 12 #define TG_CALL_FLAG 0x00 #define PC_CALL_FLAG 0x03 extern volatile int slotState; extern volatile uint8_t DMR_frame_buffer[DMR_FRAME_BUFFER_SIZE]; extern volatile bool updateLastHeard; extern volatile int dmrMonitorCapturedTS; extern volatile ticksTimer_t readDMRRSSITimer; enum DMR_SLOT_STATE { DMR_STATE_IDLE, DMR_STATE_RX_1, DMR_STATE_RX_2, DMR_STATE_RX_END, DMR_STATE_TX_START_1, DMR_STATE_TX_START_2, DMR_STATE_TX_START_3, DMR_STATE_TX_START_4, DMR_STATE_TX_START_5, DMR_STATE_TX_1, DMR_STATE_TX_2, DMR_STATE_TX_END_1, DMR_STATE_TX_END_2, DMR_STATE_TX_END_3_RMO, DMR_STATE_TX_END_3_DMO, DMR_STATE_REPEATER_WAKE_1, DMR_STATE_REPEATER_WAKE_2, DMR_STATE_REPEATER_WAKE_3, DMR_STATE_REPEATER_WAKE_FAIL_1, DMR_STATE_REPEATER_WAKE_FAIL_2 }; enum WakingMode { WAKING_MODE_NONE, WAKING_MODE_WAITING, WAKING_MODE_AWAKEN, WAKING_MODE_FAILED }; enum DMR_Embedded_Data { DMR_EMBEDDED_DATA_GROUP = 0U, DMR_EMBEDDED_DATA_USER_USER = 3U, DMR_EMBEDDED_DATA_TALKER_ALIAS_HEADER = 4U, DMR_EMBEDDED_DATA_TALKER_ALIAS_BLOCK1 = 5U, DMR_EMBEDDED_DATA_TALKER_ALIAS_BLOCK2 = 6U, DMR_EMBEDDED_DATA_TALKER_ALIAS_BLOCK3 = 7U, DMR_EMBEDDED_DATA_GPS_INFO = 8U }; #if defined(PLATFORM_MD9600) || defined(PLATFORM_MDUV380) || defined(PLATFORM_MD380) || defined(PLATFORM_RT84_DM1701) typedef struct { uint8_t Mode; uint8_t Dev; #if ! defined(PLATFORM_MD9600) uint8_t D1; #endif } HRC6000_Tone1Config_t; #endif void PORTC_IRQHandler(void); void HRC6000Init(void); void HRC6000InitInterrupts(void); void HRC6000InitDigitalDmrRx(void); void HRC6000ResetTimeSlotDetection(void); void HRC6000InitDigital(void); void HRC6000TerminateDigital(void); void HRC6000InitTask(void); void HRC6000ResyncTimeSlot(void); uint32_t HRC6000GetReceivedTgOrPcId(void); uint32_t HRC6000GetReceivedSrcId(void); void HRC6000ClearTimecodeSynchronisation(void); void HRC6000ClearColorCodeSynchronisation(void); void HRC6000SetTalkerAlias(const char *text); void HRC6000SetTalkerAliasLocation(uint32_t Lat, uint32_t Lon); bool HRC6000IRQHandlerIsRunning(void); bool HRC6000StartSmsTransmission(void); bool HRC6000IsSendingSMS(void); void HRC6000CancelSmsTransmission(void); bool HRC6000HasGotSync(void); bool HRC6000CCIsHeld(void); void HRC6000SetDmrRxGain(int8_t gain); void HRC6000SetDmrAGCGain(int8_t gain); void HRC6000ClearIsWakingState(void); int HRC6000GetIsWakingState(void); void HRC6000ClearActiveDMRID(void); bool HRC6000CheckTalkGroupFilter(void); void HRC6000SetMicGainDMR(uint8_t gain); void HRC6000FlushMusic(void); #if defined(PLATFORM_MD9600) || defined(PLATFORM_MDUV380) || defined(PLATFORM_MD380) || defined(PLATFORM_RT84_DM1701) void HRC6000SetMicGainFM(uint8_t gain); void HRC6000SetFMTx(void); void HRC6000SetFMRx(void); void HRC6000SetDMR(void);; void HRC6000SetTxCTCSS(uint8_t index); void HRC6000SetTxDCS(uint16_t code,bool inverted); void HRC6000SetRxCTCSS(uint8_t index); void HRC6000SetRxDCS(uint16_t code, bool inverted); bool HRC6000CheckCSS(void); void HRC6000SetMicGainFM(uint8_t gain); void HRC6000SetLineOut(bool isOn); void HRC6000SetFmAudio(bool isOn); void HRC6000GetTone1Config(HRC6000_Tone1Config_t *cfg); void HRC6000SetTone1Config(HRC6000_Tone1Config_t *cfg); void HRC6000SetDTMF(uint8_t code); void HRC6000InitDTMF(void); void HRC6000DTMFoff(bool enableMic); void hrc6000SysInterruptHandler(void); void hrc6000TimeslotInterruptHandler(void); void hrc6000TxInterruptHandler(void); void hrc6000SetInIRQHandler(bool in); void HRC6000SendTone(int tonefreq); void HRC6000MuteFmAudio(bool ismute); void HRC6000SetMic(bool isOn); #endif #endif /* _OPENGD77_HR_C6000_H_ */