This repository has been archived on 2025-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
controller-hart/Tests/test.c

20 lines
261 B
C

#include "test.h"
#include "test_bsp.h"
#include <stdlib.h>
#include <string.h>
void test(uint8_t flag)
{
switch (flag)
{
case TEST_DISABLE:
return;
case TEST_BSP:
bsp_test();
break;
default:
break;
}
}