Skip to content

Commit

Permalink
bench: Update to use new api
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Nov 23, 2024
1 parent a45d95c commit b2285fc
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions benches/bench.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use criterion::{criterion_group, criterion_main, Criterion};
use navigator_rs::{AdcChannel, Navigator, PwmChannel, UserLed};
use navigator_rs::{AdcChannel, Navigator, UserLed};

fn navigator_benchmark(c: &mut Criterion) {
#[macro_export]
Expand All @@ -26,17 +26,13 @@ fn navigator_benchmark(c: &mut Criterion) {
bench!(read_pressure());
bench!(read_temperature());

bench!(read_all());
bench!(read_adc_all());

// Benchmark Outputs
bench!(set_pwm_enable(false));
bench!(get_pwm_enable());
bench!(set_pwm_channel_value(PwmChannel::Ch1, 100));
bench!(set_pwm_freq_hz(60.0));
bench!(set_pwm_freq_prescale(100));

bench!(set_pwm_duty_cycle(0, 0.1));
bench!(set_pwm_frequency(60.0));
bench!(set_neopixel(&[[0, 0, 0]]));

bench!(set_led(UserLed::Led1, false));
bench!(set_led_toggle(UserLed::Led1));
bench!(get_led(UserLed::Led1));
Expand Down

0 comments on commit b2285fc

Please sign in to comment.