Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>pull/389/head
parent
54d6241e67
commit
129272883a
@ -1,40 +0,0 @@
|
||||
/* -*- mode: c++ -*-
|
||||
* Kaleidoscope-HostOS -- Host OS detection and tracking for Kaleidoscope
|
||||
* Copyright (C) 2016, 2017 Gergely Nagy
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <Kaleidoscope/HostOS-Base.h>
|
||||
#include <Kaleidoscope/HostOS-Focus.h>
|
||||
|
||||
namespace KaleidoscopePlugins {
|
||||
namespace HostOS {
|
||||
bool
|
||||
Focus(const char *command) {
|
||||
if (strcmp_P(command, PSTR("hostos.type")) != 0)
|
||||
return false;
|
||||
|
||||
if (Serial.peek() == '\n') {
|
||||
Serial.println(::HostOS.os());
|
||||
} else {
|
||||
uint8_t os = Serial.parseInt();
|
||||
::HostOS.os((KaleidoscopePlugins::HostOS::Type) os);
|
||||
}
|
||||
|
||||
Serial.read();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
/* -*- mode: c++ -*-
|
||||
* Kaleidoscope-HostOS -- Host OS detection and tracking for Kaleidoscope
|
||||
* Copyright (C) 2016, 2017 Gergely Nagy
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Kaleidoscope/HostOS-Base.h>
|
||||
|
||||
namespace KaleidoscopePlugins {
|
||||
namespace HostOS {
|
||||
bool Focus(const char *command);
|
||||
};
|
||||
};
|
||||
|
||||
#define FOCUS_HOOK_HOSTOS \
|
||||
FOCUS_HOOK(KaleidoscopePlugins::HostOS::Focus, "hostos.type")
|
Loading…
Reference in new issue