Release candidate version. The pointer in GAS Pressure display is changed to a triangle.
Dependencies: UniGraphic mbed vt100
Please note, at 2-Mar-2018 the current version of mbed-lib has a defect in Ticker.
https://os.mbed.com/forum/bugs-suggestions/topic/29287/
So, mbed lib version 157 is intentionally being used.
Please do not update mbed library until the problem in the above URL is fixed.
In this version, format of GAS Pressure Display has been changed.
moto
edge_utils/edge_pin.h@0:774324cbc5a6, 2018-03-02 (annotated)
- Committer:
- Rhyme
- Date:
- Fri Mar 02 07:56:09 2018 +0000
- Revision:
- 0:774324cbc5a6
Release candidate version. GAS Pressure pointer is now a triangle.; Some source file clean-up was done.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Rhyme | 0:774324cbc5a6 | 1 | #ifndef _EDGE_PIN_H_ |
Rhyme | 0:774324cbc5a6 | 2 | #define _EDGE_PIN_H_ |
Rhyme | 0:774324cbc5a6 | 3 | |
Rhyme | 0:774324cbc5a6 | 4 | #if defined (TARGET_KL25Z) |
Rhyme | 0:774324cbc5a6 | 5 | #define PIN_INTR PTD4 |
Rhyme | 0:774324cbc5a6 | 6 | #define PIN_ASR_RESET PTA13 |
Rhyme | 0:774324cbc5a6 | 7 | #define PIN_SCK PTD1 |
Rhyme | 0:774324cbc5a6 | 8 | #define PIN_MOSI PTD2 |
Rhyme | 0:774324cbc5a6 | 9 | #define PIN_MISO PTD3 |
Rhyme | 0:774324cbc5a6 | 10 | #define PIN_CS PTD0 |
Rhyme | 0:774324cbc5a6 | 11 | /* ILI9341 */ |
Rhyme | 0:774324cbc5a6 | 12 | #define PIN_CS_TFT PTC7 |
Rhyme | 0:774324cbc5a6 | 13 | #define PIN_RESET_TFT PTC4 |
Rhyme | 0:774324cbc5a6 | 14 | #define PIN_DC_TFT PTC0 |
Rhyme | 0:774324cbc5a6 | 15 | #define PIN_BL_TFT PTC3 |
Rhyme | 0:774324cbc5a6 | 16 | |
Rhyme | 0:774324cbc5a6 | 17 | #define PIN_FRDM_LEDR PTB18 |
Rhyme | 0:774324cbc5a6 | 18 | #define PIN_FRDM_LEDG PTB19 |
Rhyme | 0:774324cbc5a6 | 19 | #define PIN_FRDM_LEDB PTD1 /* conflict with SCK orz */ |
Rhyme | 0:774324cbc5a6 | 20 | /* on board I2C0 */ |
Rhyme | 0:774324cbc5a6 | 21 | // #define PIN_I2C0_SCL PTE24 |
Rhyme | 0:774324cbc5a6 | 22 | // #define PIN_I2C0_SDA PTE25 |
Rhyme | 0:774324cbc5a6 | 23 | /* external I2C0 */ |
Rhyme | 0:774324cbc5a6 | 24 | #define PIN_I2C0_SCL PTC8 |
Rhyme | 0:774324cbc5a6 | 25 | #define PIN_I2C0_SDA PTC9 |
Rhyme | 0:774324cbc5a6 | 26 | #define PIN_I2C1_SCL PTE1 |
Rhyme | 0:774324cbc5a6 | 27 | #define PIN_I2C1_SDA PTE0 |
Rhyme | 0:774324cbc5a6 | 28 | #define PIN_AN0 PTB0 |
Rhyme | 0:774324cbc5a6 | 29 | #define PIN_AN1 PTB1 |
Rhyme | 0:774324cbc5a6 | 30 | #define PIN_AN2 PTB2 |
Rhyme | 0:774324cbc5a6 | 31 | #define PIN_LED_R PTA5 |
Rhyme | 0:774324cbc5a6 | 32 | #define PIN_LED_G PTA4 |
Rhyme | 0:774324cbc5a6 | 33 | #define PIN_LED_B PTA12 |
Rhyme | 0:774324cbc5a6 | 34 | #define PIN_PRESS_EN PTC5 |
Rhyme | 0:774324cbc5a6 | 35 | #endif /* TARGET_KL25Z */ |
Rhyme | 0:774324cbc5a6 | 36 | |
Rhyme | 0:774324cbc5a6 | 37 | #endif /* _EDGE_PIN_H_ */ |