mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
34 lines
460 B
C++
34 lines
460 B
C++
|
|
/*
|
|
* @file common.hpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 20.05.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
|
|
#ifndef MODULE_BSP_COMMON_HPP
|
|
#define MODULE_BSP_COMMON_HPP
|
|
|
|
//TODO maybe move KeyEvents to keyboard.hpp
|
|
namespace bsp
|
|
{
|
|
enum class RetCode{
|
|
Success,
|
|
Failure
|
|
|
|
};
|
|
|
|
enum class KeyEvents{
|
|
Released,
|
|
Pressed,
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif //MODULE_BSP_COMMON_HPP
|