PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   YATTT sd_map_test cPong SnowDemo ... more

PokittoLib

Library for programming Pokitto hardware

How to Use

  1. Import this library to online compiler (see button "import" on the right hand side
  2. DO NOT import mbed-src anymore, a better version is now included inside PokittoLib
  3. Change My_settings.h according to your project
  4. Start coding!
Committer:
Pokitto
Date:
Wed Dec 25 23:59:52 2019 +0000
Revision:
71:531419862202
Parent:
30:796f9611d2ac
Changed Mode2 C++ refresh code (graphical errors)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 30:796f9611d2ac 1 /*
Pokitto 30:796f9611d2ac 2 * @note
Pokitto 30:796f9611d2ac 3 * Copyright(C) NXP Semiconductors, 2013
Pokitto 30:796f9611d2ac 4 * All rights reserved.
Pokitto 30:796f9611d2ac 5 *
Pokitto 30:796f9611d2ac 6 * @par
Pokitto 30:796f9611d2ac 7 * Software that is described herein is for illustrative purposes only
Pokitto 30:796f9611d2ac 8 * which provides customers with programming information regarding the
Pokitto 30:796f9611d2ac 9 * LPC products. This software is supplied "AS IS" without any warranties of
Pokitto 30:796f9611d2ac 10 * any kind, and NXP Semiconductors and its licensor disclaim any and
Pokitto 30:796f9611d2ac 11 * all warranties, express or implied, including all implied warranties of
Pokitto 30:796f9611d2ac 12 * merchantability, fitness for a particular purpose and non-infringement of
Pokitto 30:796f9611d2ac 13 * intellectual property rights. NXP Semiconductors assumes no responsibility
Pokitto 30:796f9611d2ac 14 * or liability for the use of the software, conveys no license or rights under any
Pokitto 30:796f9611d2ac 15 * patent, copyright, mask work right, or any other intellectual property rights in
Pokitto 30:796f9611d2ac 16 * or to any products. NXP Semiconductors reserves the right to make changes
Pokitto 30:796f9611d2ac 17 * in the software without notification. NXP Semiconductors also makes no
Pokitto 30:796f9611d2ac 18 * representation or warranty that such application will be suitable for the
Pokitto 30:796f9611d2ac 19 * specified use without further testing or modification.
Pokitto 30:796f9611d2ac 20 *
Pokitto 30:796f9611d2ac 21 * @par
Pokitto 30:796f9611d2ac 22 * Permission to use, copy, modify, and distribute this software and its
Pokitto 30:796f9611d2ac 23 * documentation is hereby granted, under NXP Semiconductors' and its
Pokitto 30:796f9611d2ac 24 * licensor's relevant copyrights in the software, without fee, provided that it
Pokitto 30:796f9611d2ac 25 * is used in conjunction with NXP Semiconductors microcontrollers. This
Pokitto 30:796f9611d2ac 26 * copyright, permission, and disclaimer notice must appear in all copies of
Pokitto 30:796f9611d2ac 27 * this code.
Pokitto 30:796f9611d2ac 28 */
Pokitto 30:796f9611d2ac 29
Pokitto 30:796f9611d2ac 30 #ifndef __SYS_CONFIG_H_
Pokitto 30:796f9611d2ac 31 #define __SYS_CONFIG_H_
Pokitto 30:796f9611d2ac 32
Pokitto 30:796f9611d2ac 33 /* Required for the LPC11U6x device */
Pokitto 30:796f9611d2ac 34 #define CHIP_LPC11U6X
Pokitto 30:796f9611d2ac 35
Pokitto 30:796f9611d2ac 36 #endif /* __SYS_CONFIG_H_ */
Pokitto 30:796f9611d2ac 37