20 lines
231 B
C++
20 lines
231 B
C++
//
|
|
// Created by erki on 15.07.22.
|
|
//
|
|
|
|
#ifndef SKL_TUNNEL_APP_BOARD_HPP
|
|
#define SKL_TUNNEL_APP_BOARD_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace App::Board
|
|
{
|
|
|
|
void setup();
|
|
|
|
std::uint32_t systickGet();
|
|
|
|
}
|
|
|
|
#endif //SKL_TUNNEL_APP_BOARD_HPP
|