Full messaging support, implemented fresh in three layers: - dmrDataProtocol: pure short-data codec (CSBK preamble, data/response headers, IP/UDP/TMS payload, ETSI CRCs) validated against on-air captures by a host-side test suite. Transmits Motorola TMS (UDP 4007), receives TMS and Anytone/"DMR standard" (UDP 5016). - smsCore/smsStorage: TX queue with wait-for-channel and delivery confirmation (response PDU / ACK, resend prompt on timeout), ISR-side block assembly with layout auto-detection (confirmed/unconfirmed, rate-1/2 and full 18-byte rate-3/4 blocks), delivery reports to senders that request them, and a checksummed message store in SPI flash at 0xC00000 (inbox + sent, 8 each; 8 quick texts). - UI: Messages hub (main menu or long-press GREEN), keypad compose with multi-tap (160 chars), inbox/sent/view with reply-resend-delete, quick-text picker/editor, options (Wait for ACK, My ID only), and an incoming-message popup with chime. Strings in all 20 languages. The HR-C6000 does the BPTC/FEC; the driver streams 12-byte logical bursts through the existing TX state machine (repeater wake included), locks out PTT during a send, and leaves hotspot mode untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
91 lines
3.9 KiB
C
91 lines
3.9 KiB
C
/*
|
|
* Copyright (C) 2026-today Marcus Kida, DK1DA
|
|
*
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Persistent store for the DMR SMS feature: inbox, sent messages and
|
|
* quick-text templates, held as a single RAM image and lazily persisted
|
|
* to a dedicated SPI flash region.
|
|
*
|
|
* Physical flash map on this platform (16MB W25Q128):
|
|
* 0x000000 - 0x00FFFF emulated EEPROM (settings)
|
|
* 0x010000 calibration copy
|
|
* 0x020000 - ~0x100000 codeplug (FLASH_ADDRESS_OFFSET 128KB + codeplug regions)
|
|
* 0x050000 / 0x0D8000 DMR ID databases
|
|
* 0x0AF400 / 0x100000 voice prompts
|
|
* 0xC00000 << SMS store (this module, 2 sectors) >>
|
|
* 0xE00000 - 0xFFFFFF GPS log (last 2MB)
|
|
*/
|
|
#ifndef _OPENGD77_SMS_STORAGE_H_
|
|
#define _OPENGD77_SMS_STORAGE_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "functions/dmrDataProtocol.h"
|
|
|
|
#define SMS_STORAGE_FLASH_ADDRESS 0xC00000
|
|
#define SMS_INBOX_SLOTS 8
|
|
#define SMS_SENT_SLOTS 8
|
|
#define SMS_QUICKTEXT_SLOTS 8
|
|
|
|
#define SMS_RECORD_FLAG_UNREAD 0x01
|
|
|
|
// smsStorageOptions bits
|
|
#define SMS_OPTION_WAIT_FOR_ACK 0x01
|
|
#define SMS_OPTION_OWN_ID_ONLY 0x02
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t peerId; // sender (inbox) or destination (sent)
|
|
uint8_t flags;
|
|
char text[SMS_MAX_TEXT_LENGTH + 1];
|
|
} smsRecord_t;
|
|
|
|
void smsStorageInit(void);
|
|
void smsStorageTick(void); // debounced persist, main loop context only
|
|
void smsStorageMarkDirty(void);
|
|
|
|
uint8_t smsInboxCount(void);
|
|
const smsRecord_t *smsInboxGet(uint8_t index); // index 0 = newest
|
|
bool smsInboxAdd(uint32_t srcId, const char *text); // newest-first, oldest dropped when full
|
|
bool smsInboxDelete(uint8_t index);
|
|
void smsInboxMarkRead(uint8_t index);
|
|
uint8_t smsInboxUnreadCount(void);
|
|
|
|
uint8_t smsSentCount(void);
|
|
const smsRecord_t *smsSentGet(uint8_t index);
|
|
bool smsSentAdd(uint32_t dstId, const char *text);
|
|
bool smsSentDelete(uint8_t index);
|
|
|
|
uint8_t smsQuickTextCount(void);
|
|
const char *smsQuickTextGet(uint8_t index);
|
|
bool smsQuickTextSet(uint8_t index, const char *text); // index == smsQuickTextCount() appends
|
|
bool smsQuickTextDelete(uint8_t index);
|
|
|
|
uint8_t smsStorageGetOptions(void);
|
|
void smsStorageSetOptions(uint8_t options);
|
|
|
|
#endif /* _OPENGD77_SMS_STORAGE_H_ */
|