fix couple issues with usb firmware

This commit is contained in:
Conor Patrick
2018-07-22 13:41:46 -04:00
parent a54cbd60a1
commit 077be6eab2
16 changed files with 321 additions and 745 deletions

15
lib/efm8_assert/assert.c Normal file
View File

@@ -0,0 +1,15 @@
/**************************************************************************//**
* Copyright (c) 2015 by Silicon Laboratories Inc. All rights reserved.
*
* http://developer.silabs.com/legal/version/v11/Silicon_Labs_Software_License_Agreement.txt
*****************************************************************************/
#ifndef NDEBUG
void slab_Assert( const char * file, int line )
{
file = file;
line = line;
while ( 1 );
}
#endif