What is it? A generic stand-alone MIPS program that can do PRINTF on a standard UART. requirements: . CPU has CP0 structure (r4k compatible) Configure:
标签: stand-alone requirem standard generic
上传时间: 2017-02-19
上传用户:shawvi
因为“飞思卡尔”S12单片机不支持PRINTF()函数,要想输出还得自己编写输出函数。所以我给大家提供一个Printp90函数吧!
上传时间: 2017-03-31
上传用户:bjgaofei
在ARM上实现PRINTF,可以输出任何格式的变量,调试时非常方便
上传时间: 2017-05-05
上传用户:gyq
STM32 PRINTF for stm32f103 -> UART1
上传时间: 2017-05-13
上传用户:凌云御清风
linux下的PRINTF函数实现,实现了部分功能
上传时间: 2014-02-20
上传用户:firstbyte
程序开发中写log用的实现代码, C语言代码, 可以不用修改再C++或MFC中使用, 可以将写log的函数使用方法同PRINTF, 可以接收可变参数. 对于开发程序很有帮助.
上传时间: 2017-06-02
上传用户:FreeSky
//颜色初始化 if(!has_colors() || start_color() == ERR){ endwin() PRINTF("Terminal does not support color.\n") exit(1) } init_pair(1, COLOR_GREEN, COLOR_BLACK) init_pair(2, COLOR_RED, COLOR_BLACK) init_pair(3, COLOR_CYAN, COLOR_BLACK) init_pair(4, COLOR_WHITE, COLOR_BLACK) init_pair(5, COLOR_MAGENTA, COLOR_BLACK) init_pair(6, COLOR_BLUE, COLOR_BLACK) init_pair(7, COLOR_YELLOW, COLOR_BLACK) //写字符串 for(i = 1 i <= 7 i++) { attron(COLOR_PAIR(i)) printw("color pair d in normal mode\n", i) } for(i = 1 i <= 7 i++) { attron(COLOR_PAIR(i) | A_BLINK | A_UNDERLINE) printw("color pair d in normal mode\n", i) }
标签: start_color has_colors Terminal endwin
上传时间: 2014-01-14
上传用户:vodssv
本人参照linux 0.1内核源代码写的PRINTF函数的实现,支持 c, s, o, d, x, f的打印输出
上传时间: 2017-08-20
上传用户:yy541071797
PRINTF implementation (small) for microcontrollers
标签: microcontrollers implementation PRINTF small
上传时间: 2017-08-30
上传用户:hxy200501
STM32 "kickstart" program with newlib/stdio like sPRINTF&PRINTF
标签: kickstart program sPRINTF newlib
上传时间: 2017-09-13
上传用户:dapangxie