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.

12 lines
342 B

3 years ago
3 years ago
3 years ago
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. #include "port.h"
  5. #include "thisdevice.h"
  6. void frequency_sweep_start(uint32_t startfreq, uint32_t step, uint32_t endfreq, uint16_t dutyns);
  7. void frequency_sweep_stop();
  8. bool frequency_sweep_is_finished();
  9. float frequency_sweep_get_power(uint16_t freq);
  10. void frequency_sweep_schedule();