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.
Diff: fpga.cpp
- Revision:
- 28:fdb3b144e342
- Parent:
- 20:0394e15412c3
- Child:
- 45:3b51dd26b579
--- a/fpga.cpp Fri Dec 14 12:32:27 2018 +0000
+++ b/fpga.cpp Sat Dec 15 14:20:04 2018 +0000
@@ -157,6 +157,7 @@
UINT16 regVal;
if( iPos<8){ regAdr += iPos; } //指定位置だけオフセットさせる
+ //sp.printf("POS[%d] Val[%d]\r\n", iPos, iVal);
regVal = (iVal<0) ? 0 :(iVal>4095)? 4095 : iVal; //レジスタ設定範囲内にリミット
xSpi(regAdr , regVal);//
}