ComfyUI_IPAdapter_plus项目InsightFace安装问题的终极解决方案:彻底解决FaceID模型依赖冲突
2026/7/3 8:20:31
#ifdef __GNUC__ #define PUTCHAR_PROTOTYPE int __io_putchar(int ch) //对于CLion使用的arm-none-eabi-gcc #else #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f) //对于MDK-ARM用的ARMCC编译器 #endif PUTCHAR_PROTOTYPE { HAL_UART_Transmit(&huart1, (const uint8_t *)&ch, 1, 1000); return ch; }