搜索结果
找到约 4,372 项符合
uart-I 的查询结果
嵌入式Linux void Main(void) { sys_init() // Initial 44B0X s Interrupt,Port and UART // user in
void Main(void)
{
sys_init() // Initial 44B0X s Interrupt,Port and UART
// user interface
uart_printf("\n\r Led Test Example\n")
for( )
{
led_test()
}
}
嵌入式Linux oid led8_test(void) { int i, j, k iic_init() for( ) { for(j=0 j<10 j++) {
oid led8_test(void)
{
int i, j, k
iic_init()
for( )
{
for(j=0 j<10 j++)
{
for(i=0 i<8 i++)
{
k = 9-(i+j)%10
iic_write(0x70, 0x10+i, f_szDigital[k])
}
delay(1000)
}
}
}
嵌入式Linux void Main(void) { sys_init() // Initial 44B0X s Interrupt,Port and UART wdtim
void Main(void)
{
sys_init() // Initial 44B0X s Interrupt,Port and UART
wdtimer_test() // test start
}
matlab例程 BBO I类匹配角计算 通过修改相应的参数可以计算其他负单轴晶体的I类匹配角
BBO I类匹配角计算
通过修改相应的参数可以计算其他负单轴晶体的I类匹配角
单片机开发 Cygnal C8051F020 Dual UART Example
Cygnal C8051F020 Dual UART Example
Java书籍 Core Java 2 Volume I - Fundamentals, 6th Edition chm格式 英文原版
Core Java 2 Volume I - Fundamentals, 6th Edition
chm格式 英文原版
其他书籍 邻接矩阵类的根是A d j a c e n c y W D i g r a p h
邻接矩阵类的根是A d j a c e n c y W D i g r a p h,因此从这个类开始。程序1 2 - 1给出了类的描述。程
序中,先用程序1 - 1 3中函数Make2DArray 为二组数组a 分配空间,然后对数组a 初始化,以描述
一个n 顶点、没有边的图的邻接矩阵,其复杂性为( n2 )。该代码没有捕获可能由M a k e 2 D A r r a y
引发的异常。在析构 ...
SQL Server What I did with this class is to automatize (not MS s automation) several processes to do a search i
What I did with this class is to automatize (not MS s automation) several processes to do a search in a MS Sql Server database, and show the results, retaining the data on an internal structure
数据库系统 how to extend an OLE DB consumer template class and make it much easier to use in applications. I ha
how to extend an OLE DB consumer template class and make it much easier to use in applications. I had also explained how you can utilize the power of C++ exception-handling feature to make your work easier, especially in error handling. It was just a small class in my last article.
Java编程 本程序演示for-for的二重循环结构。外层for语句的循环变量是i
本程序演示for-for的二重循环结构。外层for语句的循环变量是i,控制总共显示多少行 内层for语句
的循环变量是j,控制每行显示多少字符。