mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-02-16 17:02:30 +00:00
format
This commit is contained in:
parent
b2a0eb3cb4
commit
2462a22140
@ -2,19 +2,17 @@
|
|||||||
#![no_main]
|
#![no_main]
|
||||||
|
|
||||||
use core::option::Option::Some;
|
use core::option::Option::Some;
|
||||||
|
|
||||||
use defmt::info;
|
use defmt::info;
|
||||||
use defmt_rtt as _; // global logger
|
use defmt_rtt as _; // global logger
|
||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_stm32::gpio::OutputType;
|
use embassy_stm32::gpio::OutputType;
|
||||||
use embassy_stm32::interrupt;
|
|
||||||
use embassy_stm32::pac;
|
|
||||||
use embassy_stm32::rcc::*;
|
use embassy_stm32::rcc::*;
|
||||||
use embassy_stm32::time::hz;
|
use embassy_stm32::time::hz;
|
||||||
use embassy_stm32::timer::low_level::Timer as LLTimer;
|
use embassy_stm32::timer::low_level::{Timer as LLTimer, *};
|
||||||
use embassy_stm32::timer::low_level::*;
|
|
||||||
use embassy_stm32::timer::simple_pwm::PwmPin;
|
use embassy_stm32::timer::simple_pwm::PwmPin;
|
||||||
use embassy_stm32::timer::Channel;
|
use embassy_stm32::timer::Channel;
|
||||||
use embassy_stm32::Config;
|
use embassy_stm32::{interrupt, pac, Config};
|
||||||
use panic_probe as _;
|
use panic_probe as _;
|
||||||
|
|
||||||
const DDS_SINE_DATA: [u8; 256] = [
|
const DDS_SINE_DATA: [u8; 256] = [
|
||||||
|
Loading…
Reference in New Issue
Block a user