Error as described in MBs email to MS

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

Committer:
marcbax
Date:
Thu Jan 11 13:42:27 2018 +0000
Revision:
0:c643d398cdb6
Marc Bax version 180111. It hangs on the WritePartImage in the RedrawAlphabet routine in hangman.cpp. Within that call it does execute Ypos(), but not Xpos().

Who changed what in which revision?

UserRevisionLine numberNew contents of line
marcbax 0:c643d398cdb6 1 /*
marcbax 0:c643d398cdb6 2 Plastic Logic EPD project on MSP430
marcbax 0:c643d398cdb6 3
marcbax 0:c643d398cdb6 4 Copyright (C) 2014 Plastic Logic Limited
marcbax 0:c643d398cdb6 5
marcbax 0:c643d398cdb6 6 This program is free software: you can redistribute it and/or modify
marcbax 0:c643d398cdb6 7 it under the terms of the GNU General Public License as published by
marcbax 0:c643d398cdb6 8 the Free Software Foundation, either version 3 of the License, or
marcbax 0:c643d398cdb6 9 (at your option) any later version.
marcbax 0:c643d398cdb6 10
marcbax 0:c643d398cdb6 11 This program is distributed in the hope that it will be useful,
marcbax 0:c643d398cdb6 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
marcbax 0:c643d398cdb6 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
marcbax 0:c643d398cdb6 14 GNU General Public License for more details.
marcbax 0:c643d398cdb6 15
marcbax 0:c643d398cdb6 16 You should have received a copy of the GNU General Public License
marcbax 0:c643d398cdb6 17 along with this program. If not, see <http://www.gnu.org/licenses/>.
marcbax 0:c643d398cdb6 18 */
marcbax 0:c643d398cdb6 19 /*
marcbax 0:c643d398cdb6 20 * msp430/plat-gpio.h -- MSP430 optimised GPIO API
marcbax 0:c643d398cdb6 21 *
marcbax 0:c643d398cdb6 22 * Authors:
marcbax 0:c643d398cdb6 23 * Guillaume Tucker <guillaume.tucker@plasticlogic.com>
marcbax 0:c643d398cdb6 24 *
marcbax 0:c643d398cdb6 25 */
marcbax 0:c643d398cdb6 26
marcbax 0:c643d398cdb6 27 #ifndef INCLUDE_MSP430_PLAT_GPIO_H
marcbax 0:c643d398cdb6 28 #define INCLUDE_MSP430_PLAT_GPIO_H 1
marcbax 0:c643d398cdb6 29
marcbax 0:c643d398cdb6 30 extern int msp430_gpio_get(unsigned gpio);
marcbax 0:c643d398cdb6 31 extern void msp430_gpio_set(unsigned gpio, int value);
marcbax 0:c643d398cdb6 32
marcbax 0:c643d398cdb6 33 #define pl_gpio_get(_p, _gpio) msp430_gpio_get((_gpio))
marcbax 0:c643d398cdb6 34 #define pl_gpio_set(_p, _gpio, _value) msp430_gpio_set((_gpio), (_value))
marcbax 0:c643d398cdb6 35
marcbax 0:c643d398cdb6 36 #endif /* INCLUDE_MSP430_PLAT_GPIO_H */