[SSTV] Moved method back to .cpp file
This commit is contained in:
parent
c429563deb
commit
91de2e1eeb
2 changed files with 5 additions and 1 deletions
|
@ -278,6 +278,10 @@ void SSTVClient::sendLine(uint32_t* imgLine) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint16_t SSTVClient::getPictureHeight() const {
|
||||||
|
return(_mode.height);
|
||||||
|
}
|
||||||
|
|
||||||
void SSTVClient::tone(float freq, uint32_t len) {
|
void SSTVClient::tone(float freq, uint32_t len) {
|
||||||
uint32_t start = micros();
|
uint32_t start = micros();
|
||||||
if(_audio != nullptr) {
|
if(_audio != nullptr) {
|
||||||
|
|
|
@ -180,7 +180,7 @@ class SSTVClient {
|
||||||
|
|
||||||
\returns Picture height of the currently configured SSTV mode in pixels.
|
\returns Picture height of the currently configured SSTV mode in pixels.
|
||||||
*/
|
*/
|
||||||
uint16_t getPictureHeight() const { return(_mode.height); };
|
uint16_t getPictureHeight() const;
|
||||||
|
|
||||||
#ifndef RADIOLIB_GODMODE
|
#ifndef RADIOLIB_GODMODE
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Reference in a new issue