Define types for formatFreq

This commit is contained in:
Reed Nightingale 2020-02-10 00:35:32 -08:00
parent 90d550a03a
commit 51288f1db3
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdint.h>
#define LIMIT(val,min,max) ((val) < (min)) ? (min) : (((max) < (val)) ? (max) : (val))
void formatFreq(uint32_t freq, char* buff_out, uint16_t buff_size, uint8_t fixed_width = 0);