Temporary Connector Reversed Version

Dependencies:   UniGraphic mbed vt100

afero_poc15_180403R , J1 のピン配置を反転させたヴァージョンです。

Color2系を使用するためには以下のピンをジャンパで接続してください。
J1-D7 <-> J1-D0
J1-D6 <-> J1-D1

(調査中) また、こちらでテストした範囲では、
FRDM-KL25Z の V3.3 を、Modulo2 の VCC_3V3 ピンに接続してやる必要がありました。

尚、J1-D1, D0 を使用するために UART を無効にしているため
ログは表示されません。

TFTモジュールについて 
aitendoのTFTモジュールはデフォルトでは8bit bus モードになっています。
/media/uploads/Rhyme/img_2364.jpg

半田のジャンパを変えて、SPIの設定にしてください。
/media/uploads/Rhyme/img_2363.jpg

サーミスタについて
POC1.5 では サーミスタは 25℃の時に抵抗値が 50.0kΩになる502AT-11 が
4.95kΩのプルアップ(実際は10kΩx2の並列)で使用されていました。

今回の試作では抵抗値が 10.0kΩの 103AT-11 が
5.1kΩのプルアップで使用されていますので、係数を合わせるために
SMTC502AT-11 のコンストラクタを 
R0 = 10.0
R1 = 5.1
B = 3435
T0 = 298.15
で呼ぶように変更しました。

Committer:
Rhyme
Date:
Tue Apr 24 08:58:33 2018 +0000
Revision:
0:0b6732b53bf4
Temporary Connector Reversed Version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:0b6732b53bf4 1 #include "mbed.h"
Rhyme 0:0b6732b53bf4 2 #include "string.h"
Rhyme 0:0b6732b53bf4 3 #include "vt100.h"
Rhyme 0:0b6732b53bf4 4 #include "edge_time.h"
Rhyme 0:0b6732b53bf4 5 #include "edge_pin.h"
Rhyme 0:0b6732b53bf4 6 #include "edge_reset_mgr.h"
Rhyme 0:0b6732b53bf4 7 #include "afLib.h"
Rhyme 0:0b6732b53bf4 8 #include "pending.h"
Rhyme 0:0b6732b53bf4 9 #include "msg_types.h"
Rhyme 0:0b6732b53bf4 10 #include "mbedSPI.h"
Rhyme 0:0b6732b53bf4 11 #include "af_mgr.h"
Rhyme 0:0b6732b53bf4 12
Rhyme 0:0b6732b53bf4 13 afLib *afero = 0 ;
Rhyme 0:0b6732b53bf4 14 pending_class *pending = 0 ;
Rhyme 0:0b6732b53bf4 15 InterruptIn *afero_int = 0 ;
Rhyme 0:0b6732b53bf4 16 mbedSPI *afero_spi = 0 ;
Rhyme 0:0b6732b53bf4 17 DigitalOut *afero_reset ;
Rhyme 0:0b6732b53bf4 18 bool gLinked = false ;
Rhyme 0:0b6732b53bf4 19 bool gConnected = false ;
Rhyme 0:0b6732b53bf4 20
Rhyme 0:0b6732b53bf4 21 void afero_isr(void)
Rhyme 0:0b6732b53bf4 22 {
Rhyme 0:0b6732b53bf4 23 afero->mcuISR() ;
Rhyme 0:0b6732b53bf4 24 }
Rhyme 0:0b6732b53bf4 25
Rhyme 0:0b6732b53bf4 26 void init_aflib(void)
Rhyme 0:0b6732b53bf4 27 {
Rhyme 0:0b6732b53bf4 28 afero_reset = new DigitalOut(PIN_ASR_RESET, 1) ; /* create as deasserted */
Rhyme 0:0b6732b53bf4 29 afero_spi = new mbedSPI(PIN_MOSI, PIN_MISO, PIN_SCK, PIN_CS) ;
Rhyme 0:0b6732b53bf4 30
Rhyme 0:0b6732b53bf4 31 reset_watch_dog() ;
Rhyme 0:0b6732b53bf4 32 afero = new afLib(
Rhyme 0:0b6732b53bf4 33 PIN_INTR,
Rhyme 0:0b6732b53bf4 34 afero_isr,
Rhyme 0:0b6732b53bf4 35 attributeChangeRequest,
Rhyme 0:0b6732b53bf4 36 attributeUpdatedReport,
Rhyme 0:0b6732b53bf4 37 afero_spi ) ;
Rhyme 0:0b6732b53bf4 38 reset_watch_dog() ;
Rhyme 0:0b6732b53bf4 39 wait(0.1) ;
Rhyme 0:0b6732b53bf4 40 *afero_reset = 0 ;
Rhyme 0:0b6732b53bf4 41 wait(0.5) ; /* required 250ms ~ time for reset */
Rhyme 0:0b6732b53bf4 42 *afero_reset = 1 ;
Rhyme 0:0b6732b53bf4 43 reset_watch_dog() ;
Rhyme 0:0b6732b53bf4 44 wait(0.5) ;
Rhyme 0:0b6732b53bf4 45 reset_watch_dog() ;
Rhyme 0:0b6732b53bf4 46 }