mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
25 lines
293 B
C++
25 lines
293 B
C++
|
|
/*
|
|
* @file bsp.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 20.05.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
#ifndef MODULE_BSP_BSP_HPP
|
|
#define MODULE_BSP_BSP_HPP
|
|
|
|
namespace bsp
|
|
{
|
|
|
|
void BoardInit();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //MODULE_BSP_BSP_HPP
|