PT6311 VFD driver lib. Initial version, supports VFDEM2 DVD player display.

Dependents:   mbed_PT6311

Committer:
wim
Date:
Wed Jan 20 19:05:43 2016 +0000
Revision:
0:43499fc489c6
Initial version, VFDEM2.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wim 0:43499fc489c6 1 /* mbed PT6311 Library, for Princeton PT6311 VFD controller
wim 0:43499fc489c6 2 * Copyright (c) 2016, v01: WH, Initial version, VFDEM2
wim 0:43499fc489c6 3 *
wim 0:43499fc489c6 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
wim 0:43499fc489c6 5 * of this software and associated documentation files (the "Software"), to deal
wim 0:43499fc489c6 6 * in the Software without restriction, including without limitation the rights
wim 0:43499fc489c6 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
wim 0:43499fc489c6 8 * copies of the Software, and to permit persons to whom the Software is
wim 0:43499fc489c6 9 * furnished to do so, subject to the following conditions:
wim 0:43499fc489c6 10 *
wim 0:43499fc489c6 11 * The above copyright notice and this permission notice shall be included in
wim 0:43499fc489c6 12 * all copies or substantial portions of the Software.
wim 0:43499fc489c6 13 *
wim 0:43499fc489c6 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
wim 0:43499fc489c6 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
wim 0:43499fc489c6 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
wim 0:43499fc489c6 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
wim 0:43499fc489c6 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
wim 0:43499fc489c6 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
wim 0:43499fc489c6 20 * THE SOFTWARE.
wim 0:43499fc489c6 21 */
wim 0:43499fc489c6 22
wim 0:43499fc489c6 23 #ifndef PT6311_CONFIG_H
wim 0:43499fc489c6 24 #define PT6311_CONFIG_H
wim 0:43499fc489c6 25
wim 0:43499fc489c6 26 // Select one of the testboards for Princeton PT6311 VFD controller
wim 0:43499fc489c6 27 #define PT6311_TEST 0
wim 0:43499fc489c6 28 #define VFDEM2_TEST 1
wim 0:43499fc489c6 29
wim 0:43499fc489c6 30 // Select the display mode: only digits and hex or ASCII
wim 0:43499fc489c6 31 #define SHOW_ASCII 1
wim 0:43499fc489c6 32
wim 0:43499fc489c6 33 #endif