You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
578 B
28 lines
578 B
/*
|
|
* Filename: rx5808.h
|
|
* Date: Mon 20 Sep 22:14:58 +08 2021
|
|
* Author: Englebert
|
|
* Description:
|
|
* - rx5808 protocols
|
|
*/
|
|
|
|
#ifndef RX5808_H
|
|
#define RX5808_H
|
|
|
|
#include "BertFPVDiversity.h"
|
|
|
|
namespace RX5808 {
|
|
void begin();
|
|
void setSynthRegisterB(uint16_t value);
|
|
void setPowerDownRegister(uint32_t value);
|
|
void setStateRegister(uint32_t value);
|
|
|
|
void rxStandby(uint8_t receiver_id);
|
|
void rxPowerOn(uint8_t receiver_id);
|
|
void rxReset(uint8_t receiver_id);
|
|
|
|
void setChannel(uint8_t channel);
|
|
void setChannelByFreq(uint16_t freq);
|
|
}
|
|
|
|
#endif
|