-
我把WINCE600整个文件夹搜了一遍都没发现。源码放哪儿了啊,不是开源的吗?
-
STM32的AD最高采样率跟USB时钟的冲突这算不算BUG?
是不是ST也根本没考虑过要修正这个鸡肋
-
再顶,没人说点啥么?还是分不够多?
-
不知道哪块有比较好的驱动相关的论坛~~~~~
-
请看黑体部分,你可以在链接脚本里分配HEAP的大小,但不建议你用这种方法,你可以考虑一下使用POOL方式,
uc/OS-II里有一个简单的POOL管理实现方法.
//
// Define a memory region that covers the entire 4 GB addressible space of the
// processor.
//
define memory mem with size = 4G;
//
// Define a region for the on-chip flash.
//
define region FLASH = mem:[from 0x8000000 to 0x807FFFF];
//
// Define a region for the on-chip SRAM.
//
define region SRAM = mem:[from 0x20000000 to 0x2000BFFF];
//
// Define a block for the heap. The size should be set to something other
// than zero if things in the C library that require the heap are used.
//
define block HEAP with alignment = 8, size = 0x00001000 { };
define block CSTACK with alignment = 8, size = 0x00000400 { };
//
// Indicate that the read/write values should be initialized by copying from
// flash.
//
initialize by copy { readwrite };
//
// Initicate that the noinit values should be left alone. This includes the
// stack, which if initialized will destroy the return address from the
// initialization code, causing the processor to branch to zero and fault.
//
do not initialize { section .noinit };
//
// Place the interrupt vectors at the start of flash.
//
place at start of FLASH { readonly section .intvec };
//
// Place the remainder of the read-only items into flash.
//
place in FLASH { readonly };
//
// Place all read/write items into SRAM.
//
place in SRAM { readwrite, block HEAP, block CSTACK};
-
引用 9 楼 ljdtj 的回复:
LZ的bsp中没有STEPLDR?
有!!
-
引用 3 楼 kyzf 的回复:
引用 2 楼 glgl2424 的回复:
我看过周立功的,也看过优龙的,只是我不想要别的太多的功能,这样的话,我批量生产的时候,成本就大了。只要带有以太网,其他功能越少越好,或者说越便宜越好,谢谢2楼的朋友
关键看成本,虽然一般ARM或者MCU如果带以太网,那么其他功能接口一般都会有的,因为对于ARM与MCU而言,FE接口几乎是最难的接口。
楼主要以太网,所以这些其他的功能接口一般很多。
另外还有一种方案,就是采用以太网芯片,另外一般简单的ARM或者MCU外展以太网,但这样软件实现的难度很大。
所以综合来说:硬件成本 与 软硬件实现的难度才是最主要的决定因素。
另外PIC有几款MCU都带FE接口,价格还算比较低,楼主可以去他们官网看下。
再就是ST。
非常感谢你的回答,受益匪浅啊,我去看看。就像你说的那样,我看到的带FE的,几乎都很多功能,哎。。。。
-
ZTG328提供了不错的线索,检查这个函数里面gpio,smc的初始化是不是和你的板子一致..
-
很好 我支持山寨
-
太夸张了吧,仅仅是显示而已,就能100%呀
应用程序也不至于这么强呀
最好的查看方法:解析kdata查看procss及thread的内存占用
可以使用现成的工具
-
11楼:确实是这样。
-
我的sas软件也是这么弄的
-
我说的关联 就是在第二个工程的ExportSDK.sdkcfg文件里加东西
-
http://ww1.microchip.com/downloads/en/DeviceDoc/MPLAB_IDE_8_36.zip到微芯的主页下载MPLAB IDE v8.36 Full Release Zipped Installation 这个,然后先安装,安装过程中它会提示你安装picc(已经附带在下载的压缩包里),安装完后有个pdf文件(文件名我忘了)告诉你怎么将picc和mplab绑定(都是英文的哦),剩下的自己摸索下啦。我已经成功编译过16f877的芯片了,如果有什么问题可以再找我
-
做个Rom版本
或者写个程序从Flash往Windows文件夹里考,开机自动运行
-
UP
一切都会好起来的。。关注CSND。。。
-
1)目前还没有看到细节,据我所知能够提供MP3解码,好像还有WMA。
2)这个记不清了,只记得在72MHz主频时大约占用40%的CPU时间,RAM在20~30K字节。
3)功耗就是CPU的功耗
4)可以
5)请直接与ST市场部的人接洽,如果你参加了ST的研讨会,会上第一个发言的人就是你要找的。
6)可以
-
能不能也给我一个...
-
嘻嘻,是我自己弄丢了一个东西, //窗口置顶
::SetWindowPos(this->m_hWnd,HWND_TOPMOST,0,0,480,272,SWP_SHOWWINDOW);
-
我不太清楚DirectDraw使用的限制,我用的是VS2005,WTL
也用DirectDrawCreate试过,但到SetDisplayMode就失败
请指教!!