refactor tree, add ecad, mcad

This commit is contained in:
2019-08-28 23:23:48 -07:00
parent d5ddd76bef
commit ae837eef12
45 changed files with 4629 additions and 169 deletions

View File

@@ -32,7 +32,7 @@ namespace BSP {
class SystemTimerImpl {
public:
virtual Common::time_t get_time() = 0;
virtual BSP::time_t get_time() = 0;
};
class SystemTimer final {
@@ -40,7 +40,7 @@ public:
SystemTimer() = delete;
~SystemTimer() = delete;
static Common::ReturnCode get_time(Common::time_t &time);
static BSP::ReturnCode get_time(BSP::time_t &time);
static void set_timer(SystemTimerImpl& timer);
private:
static SystemTimerImpl *m_impl;