Operating System

Dependencies:   UnitTest wolfssh mDNS wolfcrypt wolfSSL

This is an embedded operating system for K64F. It includes a ssh server, a web-server and mDNS server. It has POST on boot. The main purpose of the OS is a router for the thing network.

Committer:
sPymbed
Date:
Wed Sep 11 10:41:02 2019 +0000
Revision:
3:351ee68a721d
Parent:
0:97ba3e2cd071
working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sPymbed 0:97ba3e2cd071 1 #ifndef __MYOS__COMMON__GRAPHICSCONTEXT_H
sPymbed 0:97ba3e2cd071 2 #define __MYOS__COMMON__GRAPHICSCONTEXT_H
sPymbed 0:97ba3e2cd071 3
sPymbed 0:97ba3e2cd071 4 #include <drivers/vga.h>
sPymbed 0:97ba3e2cd071 5
sPymbed 0:97ba3e2cd071 6 namespace myos
sPymbed 0:97ba3e2cd071 7 {
sPymbed 0:97ba3e2cd071 8 namespace common
sPymbed 0:97ba3e2cd071 9 {
sPymbed 0:97ba3e2cd071 10 typedef myos::drivers::VideoGraphicsArray GraphicsContext;
sPymbed 0:97ba3e2cd071 11 }
sPymbed 0:97ba3e2cd071 12 }
sPymbed 0:97ba3e2cd071 13
sPymbed 0:97ba3e2cd071 14 #endif