历史上的今天
今天是:2025年01月19日(星期日)
2021年01月19日 | MSP430MSP430F5438\MSP430F5438A 操作大内存(Ram),程序跑飞F5438\MSP430F5
2021-01-19 来源:eefocus
可以参考TI网站如下:
https://e2echina.ti.com/question_answer/microcontrollers/msp430/f/55/p/189352/580926#580926
MSP430 Memcpy 不建议大量数据的拷贝,经测试少于4K 字节是可以的,平台MSP430F5438
开始申请大容量RAM,程序跑飞解决方案,以及原因
需要重定义 __low_level_init 启动代码中会调用该函数,去关闭看门狗,现在很好奇的是,启动代码初始化,申请内存,能耗时那么久吗?
int __low_level_init(void)
{
WDTCTL = WDTPW + WDTHOLD;
/*==================================*/
/* Choose if segment initialization */
/* should be done or not. */
/* Return: 0 to omit seg_init */
/* 1 to run seg_init */
/*==================================*/
return (1);
}
The function __low_level_init is called by the start-up code before doing
the normal initialization of data segments. If the return value is zero,
initialization is not performed.
In the run-time library there is a dummy __low_level_init, which does
nothing but return 1. This means that the start-up routine proceeds with
initialization of data segments.
To replace this dummy, compile a customized version (like the example
below) and link it with the rest of your code.
史海拾趣
|
请问CPLD的JTAG口和CPLD距离有12CM远。。这样会不会有问题啊??? 来自EEWORLD合作群:arm linux fpga 嵌入0群 49900581(超级群) 群主在坛子里ID:wangkj 请问CPLD的JTAG口和CPLD距离有12CM远。。这样会不会有问题啊??? 会不会下载不了啊?… 查看全部问答> |
|
有如下英文: The SAA7130HL is a single chip solution to digitize and decode video, and capture it through the PCI-bus。 说的是SAA7130HL可以用来数字化和解码视频。 请问 1.数字化是不是把模拟的原始采集来的图像模拟信号数字化啊? 2 ...… 查看全部问答> |
|
我用的arm开发板,将U盘插进去后,显示的名称为 \"硬盘\",我想用重命名改名字但是不行,请问,大虾们,这个名字就不能改吗?想改成英文的。 谢谢!… 查看全部问答> |
|
很多初学者开始学习文件系统时,或许还是模糊的一个概念而已,只知道它是文件管理的一个复杂结构,自然会想到的是我们平时用到的U盘、SD、TF卡、MP4/5存储盘、电脑磁盘等,文件系统在生活中随处可见,下面我根据个人经验介绍一些关于文件系统的 ...… 查看全部问答> |




