@@ -73,7 +73,7 @@ void adc_mux_test()
7373 // Setup
7474 adc_multiplexer test_mux =
7575 adc_multiplexer::create (signal_pins, source_adc, mock_timer);
76- adc_mux_pin test_adc_port_zero = hal::make::adc (test_mux, 0 ).value ();
76+ adc_mux_pin test_adc_port_zero = hal::make_adc (test_mux, 0 ).value ();
7777 constexpr float expected_sample_zero = 0 ;
7878
7979 // Exercise
@@ -88,8 +88,8 @@ void adc_mux_test()
8888 // Setup
8989 adc_multiplexer test_mux =
9090 adc_multiplexer::create (signal_pins, source_adc, mock_timer);
91- adc_mux_pin first_mux_pin = hal::make::adc (test_mux, 1 ).value ();
92- adc_mux_pin second_mux_pin = hal::make::adc (test_mux, 2 ).value ();
91+ adc_mux_pin first_mux_pin = hal::make_adc (test_mux, 1 ).value ();
92+ adc_mux_pin second_mux_pin = hal::make_adc (test_mux, 2 ).value ();
9393 constexpr float expected_sample_zero = 0 ;
9494 constexpr float expected_sample_three_halves = 1.5 ;
9595
@@ -123,12 +123,12 @@ void adc_mux_test()
123123
124124 // Exercise
125125 auto test_read_data = std::array<hal::result<hal::adc::read_t >, 4 >{
126- hal::make::adc (test_mux, 0 ).value ().read (),
127- hal::make::adc (test_mux, 1 ).value ().read (),
128- hal::make::adc (test_mux, 2 ).value ().read (),
129- hal::make::adc (test_mux, 3 ).value ().read ()
126+ hal::make_adc (test_mux, 0 ).value ().read (),
127+ hal::make_adc (test_mux, 1 ).value ().read (),
128+ hal::make_adc (test_mux, 2 ).value ().read (),
129+ hal::make_adc (test_mux, 3 ).value ().read ()
130130 };
131- auto error_test = hal::make::adc (test_mux, 4 ).value ().read ();
131+ auto error_test = hal::make_adc (test_mux, 4 ).value ().read ();
132132
133133 // Verify
134134 for (auto & p : test_read_data) {
0 commit comments