You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
410 B

#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "lwip/opt.h"
#include "lwip/sys.h"
#include "lwip/api.h"
#include "main.h"
int fputc(int ch, FILE *stream)
{
uint8_t c = ch;
HAL_UART_Transmit(&huart1, &c, 1, 100);
return ch;
}
void user_main()
{
printf("==============ethernet_sound_acquisition_card=============\r\n");
while (1)
{
osDelay(1);
}
}