mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-27 12:53:53 +01:00
17 lines
456 B
C
17 lines
456 B
C
#pragma once
|
|
#include "common.h"
|
|
#include "rds.h"
|
|
#include <time.h>
|
|
|
|
void msleep(unsigned long ms);
|
|
|
|
int _strnlen(const char *s, int maxlen);
|
|
int _strncpy(char *dest, const char *src, int n);
|
|
|
|
uint16_t crc16_ccitt(char *data, uint16_t len);
|
|
|
|
uint16_t get_block_from_group(RDSGroup *group, uint8_t block);
|
|
|
|
uint8_t add_rds_af_oda(RDSAFsODA *af_list, float freq);
|
|
uint8_t add_rds_af(RDSAFs *af_list, float freq);
|
|
char *convert_to_rdscharset(const char *str); |