1

我有两个typedef struct,如下所示:

typedef struct{
    UInt32  length;
    void*   data;
    UInt16  value;
} my_type;

typedef struct{
    UInt8   type;
    UInt32  length;
    void*   value;
} tlv_t;

我接下来尝试的是为一个my_type结构分配内存,一个tlv_t从创建的对象指向的结构my_type和一个从对象指向的浮点数tlv_t

如果我在没有下面最后一行代码的情况下执行代码,它运行良好。我可以存储该值并且可以访问它。
但是,一旦我第二次尝试访问它,上传的代码就根本不再在基于 STM32F105 Contiki 的板上运行。奇怪的是,只有在使用浮点数时才会出现这种情况。其他数据类型(如int. 不幸的是,我真的需要使用float......我做错了什么?

另一个问题是printf不支持某些标志,例如%for%ul. 有人知道如何在 Contiki 上添加对它的支持吗?

my_type* t = malloc(sizeof(my_type));
t->data = malloc(sizeof(tlv_t));
tlv_t* tv = t->data;

tv->type = 10;
tv->length = sizeof(float);
tv->value = malloc(sizeof(float));    
*(float*) tv->value = 212.32;


printf("tv->value: %i\n", (int) *(float*) tv->value); 
printf("tv->value: %i\n", (int) *(float*) tv->value); // without this line it is working

编辑:

我忘了添加这些类型定义:

typedef unsigned char UInt8;
typedef unsigned short UInt16;
typedef unsigned long UInt32;

EDIT2: 这是完整的代码:

#include <contiki.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cfs/cfs.h>
#include <cfs/cfs-coffee.h>
#include "arg.h"

/*---------------------------------------------------------------------------*/
PROCESS(main_process, "Contiki CLV build015_1");
AUTOSTART_PROCESSES(&main_process);
/*---------------------------------------------------------------------------*/

PROCESS_THREAD(main_process, ev, data)
{
    PROCESS_BEGIN();

    my_type* t = malloc(sizeof(my_type));
    t->data = malloc(sizeof(tlv_t));
    tlv_t* tv = t->data;

    tv->type = 10;
    tv->length = sizeof(float);
    tv->value = malloc(sizeof(float));    
    *(float*) tv->value = 212.32;


    printf("tv->value: %i\n", (int) *(float*) tv->value); 
    printf("tv->value: %i\n", (int) *(float*) tv->value); // without this line it is working

    while (1) {
      PROCESS_YIELD();
    }

    PROCESS_END();
}

编辑3:

我正在使用最新的 arm-none-eabi-gcc(版本 4_8-2013q4-20131204)。在处理结构、浮点数或内存管理时是否存在任何已知问题?

4

2 回答 2

1

尝试

PROCESS_THREAD(main_process, ev, data)
{
    static my_type *t;
    static tlv_t *tv;
    static float f = 212.32;

    PROCESS_BEGIN();

    t = (my_type *)malloc(sizeof(my_type));
    t->data = malloc(sizeof(tlv_t));
    tv = (tlv_t *)t->data;

    tv->type = 10;
    tv->length = sizeof(float);
    tv->value = malloc(sizeof(float));    
    //*(float *) tv->value = 212.32;

    memmove(tv->value, &f, 4);


    printf("tv->value: %i\n", (int) *(float*) tv->value); 
    printf("tv->value: %i\n", (int) *(float*) tv->value); // without this line it is working
    printf("t address: %x \n", (unsigned int)t);

    while (1) {
        PROCESS_YIELD();
    }

    PROCESS_END();
}
于 2014-01-24T20:37:12.247 回答
0

我建议你修复你的代码,这样你就不会再收到编译器警告(不要关闭它们)。根据需要添加演员表。在我完成这些修复之后,您的代码对我有用,所以代码很丑但还可以。

#define UInt32 unsigned int
#define UInt16 unsigned short
#define UInt8 unsigned char

typedef struct{
    UInt32  length;
    void*   data;
    UInt16  value;
} my_type;

typedef struct{
    UInt8   type;
    UInt32  length;
    void*   value;
} tlv_t;

int _tmain(int argc, _TCHAR* argv[])
{
    my_type* t = (my_type*)malloc(sizeof(my_type));
    t->data = malloc(sizeof(tlv_t));
    tlv_t* tv = (tlv_t*)t->data;

    tv->type = 10;
    tv->length = sizeof(float);
    tv->value = malloc(sizeof(float));    
    *(float*) tv->value = (float)212.32;


    printf("tv->value: %i\n", (int) *(float*) tv->value); 
    printf("tv->value: %i\n", (int) *(float*) tv->value); // without this line it
    getchar();
}

给出 tv->value: 212 tv->value: 212

于 2014-01-24T18:06:06.927 回答