Files

copied

Scanning the repository...

Last update 8 months 3 weeks by Masakatsu Honda
FilesCubeMXpassion-v2-1AppIncperipheral
..
adc.hpp
eeprom.hpp
encodermode.hpp
gpio.hpp
interrupt.hpp
pwm.hpp
spi.hpp
wait.hpp
wait.hpp
#ifndef _WAIT_HPP_ #define _WAIT_HPP_ #include <stdio.h> #include "config.h" #include "stdout.h" #include "stm32f4xx_hal.h" namespace peripheral{ class Wait{ private: TIM_HandleTypeDef* htim_; public: Wait(TIM_HandleTypeDef* htim); void Us(uint32_t us); void Ms(uint32_t ms); ~Wait() = default; }; } #endif // _WAIT_HPP_
Report a bug