From 3fddb519f01ca53f1fd6f5c24e154912b25d1138 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 17 Jul 2018 09:57:10 +0200 Subject: Move include/$arch to include/arch/$arch to be consistent with src/ hierarchy --- include/arch/posix/driver/gpio.h | 19 +++++++++++++++++++ include/arch/posix/driver/stdout.h | 20 ++++++++++++++++++++ include/arch/posix/driver/uptime.h | 19 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 include/arch/posix/driver/gpio.h create mode 100644 include/arch/posix/driver/stdout.h create mode 100644 include/arch/posix/driver/uptime.h (limited to 'include/arch/posix/driver') diff --git a/include/arch/posix/driver/gpio.h b/include/arch/posix/driver/gpio.h new file mode 100644 index 0000000..0995729 --- /dev/null +++ b/include/arch/posix/driver/gpio.h @@ -0,0 +1,19 @@ +#ifndef GPIO_H +#define GPIO_H + +class GPIO { + private: + GPIO(const GPIO ©); + unsigned char ledstate; + + public: + GPIO () : ledstate(0) {} + void setup() {} + void led_on(unsigned char id); + void led_off(unsigned char id); + void led_toggle(unsigned char id); +}; + +extern GPIO gpio; + +#endif diff --git a/include/arch/posix/driver/stdout.h b/include/arch/posix/driver/stdout.h new file mode 100644 index 0000000..b21ad56 --- /dev/null +++ b/include/arch/posix/driver/stdout.h @@ -0,0 +1,20 @@ +#ifndef STANDARDOUTPUT_H +#define STANDARDOUTPUT_H + +#include "object/outputstream.h" + +class StandardOutput : public OutputStream { + private: + StandardOutput(const StandardOutput ©); + + public: + StandardOutput () {} + void setup() {} + + virtual void put(char c) override; + virtual void flush() override; +}; + +extern StandardOutput kout; + +#endif diff --git a/include/arch/posix/driver/uptime.h b/include/arch/posix/driver/uptime.h new file mode 100644 index 0000000..93711b9 --- /dev/null +++ b/include/arch/posix/driver/uptime.h @@ -0,0 +1,19 @@ +#ifndef UPTIME_H +#define UPTIME_H + +#include + +class Uptime { + private: + Uptime(const Uptime ©); + + public: + Uptime () {} + uint64_t get_s(); + uint64_t get_us(); + uint64_t get_cycles(); +}; + +extern Uptime uptime; + +#endif -- cgit v1.2.3