enabling DMA UART with andreika

This commit is contained in:
rusefi 2017-05-17 20:36:07 -04:00
parent c435f663b0
commit 860f6ee551
2 changed files with 3 additions and 3 deletions

View File

@ -242,9 +242,9 @@ void chDbgStackOverflowPanic(thread_t *otp) {
chDbgPanic3(panicMessage, __FILE__, __LINE__); chDbgPanic3(panicMessage, __FILE__, __LINE__);
} }
static char UNUSED_RAM_SIZE[20100]; static char UNUSED_RAM_SIZE[14100];
static char UNUSED_CCM_SIZE[9500] CCM_OPTIONAL; static char UNUSED_CCM_SIZE[16000] CCM_OPTIONAL;
int getRusEfiVersion(void) { int getRusEfiVersion(void) {
if (UNUSED_RAM_SIZE[0] != 0) if (UNUSED_RAM_SIZE[0] != 0)

View File

@ -23,7 +23,7 @@ typedef char log_buf_t[DL_OUTPUT_BUFFER];
*/ */
static char *accumulationBuffer; static char *accumulationBuffer;
static log_buf_t pendingBuffers0 CCM_OPTIONAL; static log_buf_t pendingBuffers0;
static log_buf_t pendingBuffers1; static log_buf_t pendingBuffers1;
/** /**