我对mbed和uvisor还是很陌生,所以也许我的问题在于了解事物的工作原理。我有一个NXP FRDM-K64F开发板,我试图在其中学习mbed和uvisor。我成功地编译了运行一些在不同盒子上运行的任务的基本示例。我正在尝试将网络连接到uvisor中的框之一,但某些功能无法正常工作。
这是主要的文件代码:
#include "uvisor-lib/uvisor-lib.h"
#include "mbed.h"
#include "main-hw.h"
/* Create ACLs for main box. */
MAIN_ACL(g_main_acl);
/* Enable uVisor. */
UVISOR_SET_MODE_ACL(UVISOR_ENABLED, g_main_acl);
UVISOR_SET_PAGE_HEAP(8 * 1024, 5);
int main(void)
{
printf("----Eup---------\r\n");
DigitalOut led(MAIN_LED);
while (1) {
printf("taka\r\n");
led = !led;
/* Blink once per second. */
Thread::wait(1000);
}
return 0;
}
这是盒子文件中的代码:
#include "uvisor-lib/uvisor-lib.h"
#include "mbed.h"
#include "main-hw.h"
#include "EthernetInterface.h"
// Network interface
EthernetInterface net;
struct box_context {
Thread * thread;
uint32_t heartbeat;
};
static const UvisorBoxAclItem acl[] = {
};
static void my_box_main(const void *);
/* Box configuration
* We need 1kB of stack both in the main and interrupt threads as both of them
* use printf. */
UVISOR_BOX_NAMESPACE(NULL);
UVISOR_BOX_HEAPSIZE(3072);
UVISOR_BOX_MAIN(my_box_main, osPriorityNormal, 1024);
UVISOR_BOX_CONFIG(my_box, acl, 1024, box_context);
static void my_box_main(const void *)
{
while (1) {
printf("tan tan\r\n");
Thread::wait(2000);
}
}
我尚未添加特定的连接代码,仅添加了EthernetInterface对象的定义,并且在编译时出现以下错误:
../../../../arm-none-eabi/bin/ld.exe: Region m_data_2 overflowed with stack and heap
collect2.exe: error: ld returned 1 exit status
我曾尝试更改堆大小的值,但还没有找到一种使其工作的方法。我想念什么?
最佳答案
在主框中,更改UVISOR_SET_PAGE_HEAP
的值。
在主框中带有UVISOR_SET_PAGE_HEAP(8 * 1024, 3)
;并为我编译并链接到安全箱中的8K堆和安全箱中的UVISOR_BOX_STACK_SIZE
堆栈大小(mbed OS 5.3,K64F上的GCC ARM)。
关于c - mbed uvisor和EthernetInterface溢出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42141709/