-
dsp2812例程
很好的例程
包含sci 等外设
module i2c_master_model (scl, sda);
inout scl;
inout sda;
parameter slave_addr_reg = 7"b0110101; //slave addr
int i;
reg R_scl = 1"bz;
reg R_sda = 1"bz;
reg clk = 0;
always #(1329.1125) clk = !clk;
assign scl = R_scl;
assign sda = R_sda;
- 2022-08-04 02:55:17下载
- 积分:1
-
这是我调试44B0ARM7开发板有关中断的心得。对学习ARM 的朋友很有帮助。...
这是我调试44B0ARM7开发板有关中断的心得。对学习ARM 的朋友很有帮助。-This is my development board debugging 44B0ARM7 experience the interruption. ARM s friends helpful in learning.
- 2022-02-01 02:29:24下载
- 积分:1
-
44b0 JTAG circuit PCB also use the file
44b0 的JTAG 电路PCB 还有使用文档-44b0 JTAG circuit PCB also use the file
- 2023-05-30 00:55:03下载
- 积分:1
-
台湾EV44B0II嵌入式开发系统实验源代码例程!
台湾EV44B0II嵌入式开发系统实验源代码例程!-EV44B0II
- 2022-05-20 17:43:58下载
- 积分:1
-
arm software debugger, JTAG policy can substitute for the soft right arm debuggi...
arm软件调试程序,可以代替jtag方针器对arm进行软调试,也可嵌到开发软件中。-arm software debugger, JTAG policy can substitute for the soft right arm debugging, but also to the development of embedded software.
- 2023-06-05 05:05:04下载
- 积分:1
-
汇编工具,对错误很容易识别,可以很快编译出汇编程序,帮助你很快完成程序。...
汇编工具,对错误很容易识别,可以很快编译出汇编程序,帮助你很快完成程序。-compilation tools to easily identify errors can be quickly compile the compilation process, and help you complete the process quickly.
- 2022-06-12 15:36:43下载
- 积分:1
-
最新的TMS320LF2407A开发板原理图,protel格式
最新的TMS320LF2407A开发板原理图,protel格式-TMS320LF2407A diagram, Protel format -TMS320LF2407A latest development board schematics, protel format-TMS320LF2407A diagram, Protel format
- 2022-03-26 00:50:55下载
- 积分:1
-
AT91SAM7X the CAN communication routines, go to at91.com
at91sam7x的CAN通讯例程,转至at91.com-AT91SAM7X the CAN communication routines, go to at91.com
- 2022-12-21 06:50:03下载
- 积分:1
-
这是LPC2119/2129/2292/2294通用的I2C通讯程序,供大家参考。集成有工程模板,直接可以使用。...
这是LPC2119/2129/2292/2294通用的I2C通讯程序,供大家参考。集成有工程模板,直接可以使用。-This is LPC2119/2129/2292/2294 generic I2C communication procedures, for your reference. Integrated Engineering has templates you can use directly.
- 2022-11-30 18:10:02下载
- 积分:1
-
stm32f4 CAN总线通讯-主机程序 实测可用
应用背景
这个试用与CAN通讯的主机程序,主机会发送0x1111给从机器,从机接受到信号后发送0x2222给主机,主机将收到的内容通过USART6显示在屏幕上。程序使用CoIDE编程,总线的设置等均在主函数中,方便移植。同时强烈推荐CoIDE 开源而且很适合初学者。
关键技术
CAN主机的各项配置,GPIO,USART的配置,特别适合初学者学习。清晰的编程思路。如果你是刚接触CAN总线的话一定会给你帮助的。从机只是主函数和主机不同。请大家自行修改一下。
- 2022-03-17 10:21:53下载
- 积分:1