summaryrefslogtreecommitdiff
path: root/firmware/s1224/src/common/baud_config.c
blob: 8a94a19269a36318add8eb1ab465bd213f244621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "baud_config.h"
#include "afsk_soft.h"

static const baud_profile_config_t cfg = {
#if S1224_BITRATE == 300
    .label = "s1224-300",
#elif S1224_BITRATE == 1200
    .label = "s1224-1200",
#elif S1224_BITRATE == 2400
    .label = "s1224-2400",
#else
    .label = "s1224",
#endif
};

const baud_profile_config_t *baud_config_get(void)
{
    return &cfg;
}
git clone -b <branch> https://cgit.mode42.com/<repo>.git
git clone -b <branch> git://cgit.mode42.com/<repo>.git

info@mode42.com