2012-03-04 02:16:41 +00:00
|
|
|
/* Copyright (C) 2011-2012 by Jacob Alexander
|
2011-09-30 05:22:19 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-10-16 08:18:08 +00:00
|
|
|
#ifndef __KEYMAP_H
|
|
|
|
#define __KEYMAP_H
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// ----- Includes -----
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
#include "usb_keys.h"
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ----- Defines -----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Variables -----
|
|
|
|
|
2011-10-16 07:45:10 +00:00
|
|
|
// Lots of these variables are not used, so ignore gcc unused warnings
|
|
|
|
// But just for the variables in this file (and those included into it)
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
2011-10-01 07:54:18 +00:00
|
|
|
|
2011-10-16 08:18:08 +00:00
|
|
|
// See files for full layout descriptions
|
2012-03-26 23:02:46 +00:00
|
|
|
#include "betkb.h"
|
2011-10-16 08:18:08 +00:00
|
|
|
#include "budkeypad.h"
|
2011-12-11 06:48:53 +00:00
|
|
|
#include "epsonqx10.h"
|
2011-10-16 08:18:08 +00:00
|
|
|
#include "heathzenith.h"
|
2012-11-15 09:28:31 +00:00
|
|
|
#include "hp150.h"
|
|
|
|
#include "ibmconvertible.h"
|
2011-11-03 07:09:10 +00:00
|
|
|
#include "kaypro1.h"
|
2011-11-13 10:04:44 +00:00
|
|
|
#include "microswitch8304.h"
|
2012-10-04 19:07:06 +00:00
|
|
|
#include "skm67001.h"
|
2011-12-05 03:55:32 +00:00
|
|
|
#include "sonynews.h"
|
2012-05-07 06:32:56 +00:00
|
|
|
#include "sonyoas3400.h"
|
2011-10-16 08:18:08 +00:00
|
|
|
#include "tandy1000.h"
|
2012-03-04 02:16:41 +00:00
|
|
|
#include "univacf3w9.h"
|
2011-10-01 07:54:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-16 07:45:10 +00:00
|
|
|
// Only ignore unused warnings for the above variables
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2011-10-16 08:18:08 +00:00
|
|
|
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
#endif
|
|
|
|
|