我对mbed和uvisor很新,所以也许我的问题是了解事情的运作方式。我有一台恩智浦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
我已经尝试更改堆大小的值,但我还没有找到使其工作的方法。我错过了什么?
答案 0 :(得分:1)
在主框中,更改UVISOR_SET_PAGE_HEAP
。
主框中有UVISOR_SET_PAGE_HEAP(8 * 1024, 3)
;安全框中的8K堆和安全框中的UVISOR_BOX_STACK_SIZE
堆栈大小,它为我编译和链接(mbed OS 5.3,K64F上的GCC ARM)。