diff options
author | edolomb <none@example.com> | 2017-11-07 16:44:06 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2017-11-07 16:44:06 +0000 |
commit | 4addbc1fa9032516621a8c0a17cffb8d8e686a18 (patch) | |
tree | 3e52e965f411cb9e2956fffaff10558ab9628ec2 /testhal/ATSAMA5D2/SPI | |
parent | 9f996a93b0789ed9f7423b59b37de18b14016b3e (diff) | |
download | ChibiOS-4addbc1fa9032516621a8c0a17cffb8d8e686a18.tar.gz ChibiOS-4addbc1fa9032516621a8c0a17cffb8d8e686a18.tar.bz2 ChibiOS-4addbc1fa9032516621a8c0a17cffb8d8e686a18.zip |
Updated MS2ST to TIME_MS2I
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10967 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/ATSAMA5D2/SPI')
-rw-r--r-- | testhal/ATSAMA5D2/SPI/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/ATSAMA5D2/SPI/main.c b/testhal/ATSAMA5D2/SPI/main.c index e4d5d55cf..f2c61f0d8 100644 --- a/testhal/ATSAMA5D2/SPI/main.c +++ b/testhal/ATSAMA5D2/SPI/main.c @@ -41,7 +41,7 @@ static void rxend(SPIDriver *spip) { palClearLine(LINE_LED_RED);
chSysLockFromISR();
chVTResetI(&vt3);
- chVTSetI(&vt3, MS2ST(200), led3off, NULL);
+ chVTSetI(&vt3, TIME_MS2I(200), led3off, NULL);
chSysUnlockFromISR();
}
|