diff options
| author | Atsushi Saitoh <lynxeyed@xj9.so-net.ne.jp> | 2012-02-12 01:16:57 +0900 |
|---|---|---|
| committer | Atsushi Saitoh <lynxeyed@xj9.so-net.ne.jp> | 2012-02-12 01:16:57 +0900 |
| commit | 484f2b613ed6352815f6d101d36f56b2fdeebc92 (patch) | |
| tree | 71cb3d46978c54af58f139eaa63dc8c1091b230e /src | |
| parent | af6974bc82d24d21261f5ccf21cded17536706b5 (diff) | |
some bugs are fixed
Diffstat (limited to 'src')
| -rwxr-xr-x | src/core/SPI.h | 2 | ||||
| -rwxr-xr-x | src/core/startup_mary.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/SPI.h b/src/core/SPI.h index 6040e74..0dfd6c6 100755 --- a/src/core/SPI.h +++ b/src/core/SPI.h @@ -35,7 +35,7 @@ /*! @enum SSP_PORT @brief SPIポートのチャンネル選択。使用時のCS信号を選択する - @note SPIが1ポートしかないMARYでは使用していないので特に影響はないが、2ポート以上あるLPCXpressoやmbedシリーズとの後方互換性を考慮し用意している + @note SPIが1ポートしかないMARYでは使用していないので特に影響はないが、2ポート以上あるLPCXpresso LPC1114やmbedシリーズとの後方互換性を考慮し用意している */ typedef enum { marySSP0, /*!< MARYのSSPポート(デフォルト) */ diff --git a/src/core/startup_mary.cpp b/src/core/startup_mary.cpp index 8ce5c39..c7ec282 100755 --- a/src/core/startup_mary.cpp +++ b/src/core/startup_mary.cpp @@ -13,8 +13,8 @@ void loop(void); int main(void) { - setup_systick(); - setup_TIMER32_1(); + setup_systick(); // for millis(),delay(us) + setup_TIMER32_1(); // for micros(),delayMicroseconds(us),attachMicroseconds(func,usec) setup(); |
