Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
PT6302_Config.h@0:ecc29c13a997, 2017-12-03 (annotated)
- Committer:
- wim
- Date:
- Sun Dec 03 18:02:15 2017 +0000
- Revision:
- 0:ecc29c13a997
Library for Princeton PT6302 VFD controller.; Note the PT6302 is identical to the OKI ML9208.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| wim | 0:ecc29c13a997 | 1 | /* mbed PT6302 Library, for Princeton PT6302 VFD controller |
| wim | 0:ecc29c13a997 | 2 | * Note the PT6302 is identical to the OKI ML9208 |
| wim | 0:ecc29c13a997 | 3 | * |
| wim | 0:ecc29c13a997 | 4 | * Copyright (c) 2017, v01: WH, Initial version |
| wim | 0:ecc29c13a997 | 5 | * |
| wim | 0:ecc29c13a997 | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| wim | 0:ecc29c13a997 | 7 | * of this software and associated documentation files (the "Software"), to deal |
| wim | 0:ecc29c13a997 | 8 | * in the Software without restriction, including without limitation the rights |
| wim | 0:ecc29c13a997 | 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| wim | 0:ecc29c13a997 | 10 | * copies of the Software, and to permit persons to whom the Software is |
| wim | 0:ecc29c13a997 | 11 | * furnished to do so, subject to the following conditions: |
| wim | 0:ecc29c13a997 | 12 | * |
| wim | 0:ecc29c13a997 | 13 | * The above copyright notice and this permission notice shall be included in |
| wim | 0:ecc29c13a997 | 14 | * all copies or substantial portions of the Software. |
| wim | 0:ecc29c13a997 | 15 | * |
| wim | 0:ecc29c13a997 | 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| wim | 0:ecc29c13a997 | 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| wim | 0:ecc29c13a997 | 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| wim | 0:ecc29c13a997 | 19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| wim | 0:ecc29c13a997 | 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| wim | 0:ecc29c13a997 | 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| wim | 0:ecc29c13a997 | 22 | * THE SOFTWARE. |
| wim | 0:ecc29c13a997 | 23 | */ |
| wim | 0:ecc29c13a997 | 24 | |
| wim | 0:ecc29c13a997 | 25 | #ifndef PT6302_CONFIG_H |
| wim | 0:ecc29c13a997 | 26 | #define PT6302_CONFIG_H |
| wim | 0:ecc29c13a997 | 27 | |
| wim | 0:ecc29c13a997 | 28 | // Select one of the testboards for Princeton PT6302 VFD controller |
| wim | 0:ecc29c13a997 | 29 | #define PT6302_TEST 0 |
| wim | 0:ecc29c13a997 | 30 | #define HANNSTAR_TEST 1 |
| wim | 0:ecc29c13a997 | 31 | |
| wim | 0:ecc29c13a997 | 32 | // Select if you want to include some UDC patterns |
| wim | 0:ecc29c13a997 | 33 | #define PT6302_UDC 1 |
| wim | 0:ecc29c13a997 | 34 | |
| wim | 0:ecc29c13a997 | 35 | #endif |