aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-07-01 23:50:35 +0000
committerGitHub <[email protected]>2024-07-01 23:50:35 +0000
commitf3fdeb26a4b7c6787d17877eb7c912f7efe4fa16 (patch)
tree096075c1e572ece86b05b5f22a03839712c861cd /examples
parent3d8cec3b47ed78aa4f01b7f4790759730062f0d3 (diff)
parent2462a22140834e80e63465dabcf8a783e1adb94f (diff)
Merge pull request #3127 from shufps/feat/dds-example
Feat/dds example
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32l0/Cargo.toml2
-rw-r--r--examples/stm32l0/src/bin/dds.rs116
2 files changed, 117 insertions, 1 deletions
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml
index 2c599e7a3..5b0519ac4 100644
--- a/examples/stm32l0/Cargo.toml
+++ b/examples/stm32l0/Cargo.toml
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8# Change stm32l072cz to your chip name, if necessary. 8# Change stm32l072cz to your chip name, if necessary.
9embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32l072cz", "time-driver-any", "exti", "memory-x"] } 9embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32l072cz", "unstable-pac", "time-driver-any", "exti", "memory-x"] }
10embassy-sync = { version = "0.6.0", path = "../../embassy-sync", features = ["defmt"] } 10embassy-sync = { version = "0.6.0", path = "../../embassy-sync", features = ["defmt"] }
11embassy-executor = { version = "0.5.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] } 11embassy-executor = { version = "0.5.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
12embassy-time = { version = "0.3.1", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 12embassy-time = { version = "0.3.1", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
diff --git a/examples/stm32l0/src/bin/dds.rs b/examples/stm32l0/src/bin/dds.rs
new file mode 100644
index 000000000..a54b28a93
--- /dev/null
+++ b/examples/stm32l0/src/bin/dds.rs
@@ -0,0 +1,116 @@
1#![no_std]
2#![no_main]
3
4use core::option::Option::Some;
5
6use defmt::info;
7use defmt_rtt as _; // global logger
8use embassy_executor::Spawner;
9use embassy_stm32::gpio::OutputType;
10use embassy_stm32::rcc::*;
11use embassy_stm32::time::hz;
12use embassy_stm32::timer::low_level::{Timer as LLTimer, *};
13use embassy_stm32::timer::simple_pwm::PwmPin;
14use embassy_stm32::timer::Channel;
15use embassy_stm32::{interrupt, pac, Config};
16use panic_probe as _;
17
18const DDS_SINE_DATA: [u8; 256] = [
19 0x80, 0x83, 0x86, 0x89, 0x8c, 0x8f, 0x92, 0x95, 0x98, 0x9c, 0x9f, 0xa2, 0xa5, 0xa8, 0xab, 0xae, 0xb0, 0xb3, 0xb6,
20 0xb9, 0xbc, 0xbf, 0xc1, 0xc4, 0xc7, 0xc9, 0xcc, 0xce, 0xd1, 0xd3, 0xd5, 0xd8, 0xda, 0xdc, 0xde, 0xe0, 0xe2, 0xe4,
21 0xe6, 0xe8, 0xea, 0xec, 0xed, 0xef, 0xf0, 0xf2, 0xf3, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd,
22 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb,
23 0xfa, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf0, 0xef, 0xed, 0xec, 0xea, 0xe8, 0xe6, 0xe4, 0xe2, 0xe0, 0xde,
24 0xdc, 0xda, 0xd8, 0xd5, 0xd3, 0xd1, 0xce, 0xcc, 0xc9, 0xc7, 0xc4, 0xc1, 0xbf, 0xbc, 0xb9, 0xb6, 0xb3, 0xb0, 0xae,
25 0xab, 0xa8, 0xa5, 0xa2, 0x9f, 0x9c, 0x98, 0x95, 0x92, 0x8f, 0x8c, 0x89, 0x86, 0x83, 0x80, 0x7c, 0x79, 0x76, 0x73,
26 0x70, 0x6d, 0x6a, 0x67, 0x63, 0x60, 0x5d, 0x5a, 0x57, 0x54, 0x51, 0x4f, 0x4c, 0x49, 0x46, 0x43, 0x40, 0x3e, 0x3b,
27 0x38, 0x36, 0x33, 0x31, 0x2e, 0x2c, 0x2a, 0x27, 0x25, 0x23, 0x21, 0x1f, 0x1d, 0x1b, 0x19, 0x17, 0x15, 0x13, 0x12,
28 0x10, 0x0f, 0x0d, 0x0c, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01,
29 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
30 0x0a, 0x0c, 0x0d, 0x0f, 0x10, 0x12, 0x13, 0x15, 0x17, 0x19, 0x1b, 0x1d, 0x1f, 0x21, 0x23, 0x25, 0x27, 0x2a, 0x2c,
31 0x2e, 0x31, 0x33, 0x36, 0x38, 0x3b, 0x3e, 0x40, 0x43, 0x46, 0x49, 0x4c, 0x4f, 0x51, 0x54, 0x57, 0x5a, 0x5d, 0x60,
32 0x63, 0x67, 0x6a, 0x6d, 0x70, 0x73, 0x76, 0x79, 0x7c,
33];
34
35// frequency: 15625/(256/(DDS_INCR/2**24)) = 999,99999Hz
36static mut DDS_INCR: u32 = 0x10624DD2;
37
38// fractional phase accumulator
39static mut DDS_AKKU: u32 = 0x00000000;
40
41#[interrupt]
42fn TIM2() {
43 unsafe {
44 // get next value of DDS
45 DDS_AKKU = DDS_AKKU.wrapping_add(DDS_INCR);
46 let value = (DDS_SINE_DATA[(DDS_AKKU >> 24) as usize] as u16) << 3;
47
48 // set new output compare value
49 pac::TIM2.ccr(2).modify(|w| w.set_ccr(value));
50
51 // reset interrupt flag
52 pac::TIM2.sr().modify(|r| r.set_uif(false));
53 }
54}
55
56#[embassy_executor::main]
57async fn main(_spawner: Spawner) {
58 info!("Hello World!");
59
60 // configure for 32MHz (HSI16 * 6 / 3)
61 let mut config = Config::default();
62 config.rcc.sys = Sysclk::PLL1_R;
63 config.rcc.hsi = true;
64 config.rcc.pll = Some(Pll {
65 source: PllSource::HSI,
66 div: PllDiv::DIV3,
67 mul: PllMul::MUL6,
68 });
69
70 let p = embassy_stm32::init(config);
71
72 // setup PWM pin in AF mode
73 let _ch3 = PwmPin::new_ch3(p.PA2, OutputType::PushPull);
74
75 // initialize timer
76 // we cannot use SimplePWM here because the Time is privately encapsulated
77 let timer = LLTimer::new(p.TIM2);
78
79 // set counting mode
80 timer.set_counting_mode(CountingMode::EdgeAlignedUp);
81
82 // set pwm sample frequency
83 timer.set_frequency(hz(15625));
84
85 // enable outputs
86 timer.enable_outputs();
87
88 // start timer
89 timer.start();
90
91 // set output compare mode
92 timer.set_output_compare_mode(Channel::Ch3, OutputCompareMode::PwmMode1);
93
94 // set output compare preload
95 timer.set_output_compare_preload(Channel::Ch3, true);
96
97 // set output polarity
98 timer.set_output_polarity(Channel::Ch3, OutputPolarity::ActiveHigh);
99
100 // set compare value
101 timer.set_compare_value(Channel::Ch3, timer.get_max_compare_value() / 2);
102
103 // enable pwm channel
104 timer.enable_channel(Channel::Ch3, true);
105
106 // enable timer interrupts
107 timer.enable_update_interrupt(true);
108 unsafe { cortex_m::peripheral::NVIC::unmask(interrupt::TIM2) };
109
110 async {
111 loop {
112 embassy_time::Timer::after_millis(5000).await;
113 }
114 }
115 .await;
116}