We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff87def commit ce3d096Copy full SHA for ce3d096
main.cpp
@@ -83,7 +83,7 @@ int main() {
83
// init the dma engine
84
using dma_periph = target::io::periph::dma0;
85
using dma = target::io::dma<dma_periph>;
86
- dma::init<false>();
+ dma::init<std::endian::big>();
87
88
// create the dma channels
89
using dma_tx = target::io::dma_channel<dma_periph, 0, klib::io::dma::memory, ssp>;
@@ -501,4 +501,4 @@ void __attribute__((__constructor__)) fault_startup() {
501
target::irq::register_irq<target::irq::arm_vector::memory_managagement_fault>(hardfault_handler);
502
target::irq::register_irq<target::irq::arm_vector::bus_fault>(hardfault_handler);
503
target::irq::register_irq<target::irq::arm_vector::usage_fault>(hardfault_handler);
504
-}
+}
0 commit comments