mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2024-11-21 05:30:49 +08:00
Fixed name of BK1080 enable flag.
This commit is contained in:
parent
5ce6099a1a
commit
6f8afac886
@ -38,11 +38,11 @@ static bool gIsInitBK1080;
|
||||
uint16_t BK1080_BaseFrequency;
|
||||
uint16_t BK1080_FrequencyDeviation;
|
||||
|
||||
void BK1080_Init(uint16_t Frequency, bool bDoScan)
|
||||
void BK1080_Init(uint16_t Frequency, bool bEnable)
|
||||
{
|
||||
uint8_t i;
|
||||
|
||||
if (bDoScan) {
|
||||
if (bEnable) {
|
||||
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BK1080);
|
||||
|
||||
if (!gIsInitBK1080) {
|
||||
|
@ -24,7 +24,7 @@
|
||||
extern uint16_t BK1080_BaseFrequency;
|
||||
extern uint16_t BK1080_FrequencyDeviation;
|
||||
|
||||
void BK1080_Init(uint16_t Frequency, bool bDoScan);
|
||||
void BK1080_Init(uint16_t Frequency, bool bEnable);
|
||||
uint16_t BK1080_ReadRegister(BK1080_Register_t Register);
|
||||
void BK1080_WriteRegister(BK1080_Register_t Register, uint16_t Value);
|
||||
void BK1080_Mute(bool Mute);
|
||||
|
Loading…
Reference in New Issue
Block a user