Some work on z_view

This commit is contained in:
rozlette
2020-04-21 11:49:16 -05:00
parent e3a064dbcc
commit 639df45a03
8 changed files with 472 additions and 56 deletions
+1 -1
View File
@@ -896,7 +896,7 @@ void Fault_Start(void){
faultCtxt->faultActive = 0;
faultContextStruct.faultHandlerEnabled = 1;
osCreateMesgQueue(&faultCtxt->queue, faultCtxt->msg, 1);
StackCheck_Init(&faultStackEntry, (u32)faultStack, (u32)&faultStack[1536], 0, 0x100, faultThreadName);
StackCheck_Init(&faultStackEntry, faultStack, &faultStack[1536], 0, 0x100, faultThreadName);
osCreateThread(&faultCtxt->thread, 2, (osCreateThread_func)Fault_ThreadEntry, 0, &faultStack[1536], 0x7f);
osStartThread(&faultCtxt->thread);
}