MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/Platform/debug/debug.c
2024-06-07 11:12:56 +03:00

19 lines
301 B
C

/*
* debug.c
*
* Created on: 17 Aug 2023
* Author: malyarenko
*/
#include <stddef.h>
#include <stdint.h>
#include <cpu.h>
#include <debug.h>
void __error__(const char* filename, uint32_t line) {
/* Отладочная реализация assert из driverlib */
while (1);
}