Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/core/elrs.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static const uint8_t hdzero_channel_map[ANALOG_CHANNEL_NUM] = {
9, 0, 0, 0, 0, 0, 0, 0, // E
10, 11, 0, 12, 0, 0, 0, 7, // F
1, 2, 3, 4, 5, 6, 7, 8, // R
0, 0, 0, 0, 0, 0, 0, 0, // L
1, 2, 3, 4, 5, 6, 7, 8 // L
};

static int get_freq_index(uint16_t const freq) {
Expand Down Expand Up @@ -352,8 +352,7 @@ void msp_process_packet() {
if (delay == 0) {
record_time = 0;
dvr_cmd(record_state);
}
else {
} else {
switch (record_state) {
case DVR_STOP:
if (!dvr_is_recording && !record_pending) {
Expand Down
Loading