auto-sync

This commit is contained in:
rusEfi 2016-05-03 23:01:36 -04:00
parent db6c622ec3
commit b4260c91c1
2 changed files with 4 additions and 1 deletions

View File

@ -59,6 +59,9 @@ int maxNesting = 0;
#if HAL_USE_SPI || defined(__DOXYGEN__) #if HAL_USE_SPI || defined(__DOXYGEN__)
static bool isSpiInitialized[5] = { false, false, false, false, false }; static bool isSpiInitialized[5] = { false, false, false, false, false };
// todo: use larger value if LSE is available, make this a boardConfiguration option
int lseTimeout = 0;
/** /**
* Only one consumer can use SPI bus at a given time * Only one consumer can use SPI bus at a given time
*/ */

View File

@ -298,5 +298,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0) if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array return 3211; // this is here to make the compiler happy about the unused array
return 20160426; return 20160503;
} }