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.
 
 
 
 

13 lines
342 B

#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "port.h"
#include "thisdevice.h"
void frequency_sweep_start(uint32_t startfreq, uint32_t step, uint32_t endfreq, uint16_t dutyns);
void frequency_sweep_stop();
bool frequency_sweep_is_finished();
float frequency_sweep_get_power(uint16_t freq);
void frequency_sweep_schedule();