我想用avr-g ++编译器&编译我的一些cpp函数。连接。我之前项目的经验告诉我,它绝对适用于new
和delete
。但不知何故,这个函数编译没有错误:
void usart_controller::send_data(uint32_t * data32, size_t data32_size)
{
size_t data_size = 4 * data32_size;
//uint8_t * data = new uint8_t[data_size];
uint8_t data[data_size];
uint8_t *data_ptr = &data[0];
for(unsigned int i = 0; i < data32_size; i++)
{
for(int j = 0; j < 4; j++)
{
data[i*j+j] = (data32[i] << (j*8));
}
}
/*usart_serial_write_packet(this->usart, *data_ptr, (size_t)(data_size * sizeof(uint8_t)));*/
size_t len = sizeof(uint8_t)*data_size;
while (len) {
usart_serial_putchar(this->usart, *data_ptr);
len--;
data_ptr++;
}
//delete[] data;//Highly discouraged, because of memory leak!//Works as a charme because of C, but I don't care at the moment
}
但与new
相同的功能不起作用:
void usart_controller::send_data(uint32_t * data32, size_t data32_size)
{
size_t data_size = 4 * data32_size;
uint8_t * data = new uint8_t[data_size];
//uint8_t data[data_size];
//uint8_t *data_ptr = &data[0];
for(unsigned int i = 0; i < data32_size; i++)
{
for(int j = 0; j < 4; j++)
{
data[i*j+j] = (data32[i] << (j*8));
}
}
/*usart_serial_write_packet(this->usart, *data_ptr, (size_t)(data_size * sizeof(uint8_t)));*/
size_t len = sizeof(uint8_t)*data_size;
while (len) {
usart_serial_putchar(this->usart, *data);
len--;
data++;
}
delete[] data;
}
这里我收到以下错误:
error: undefined reference to `operator new[](unsigned int)'
error: undefined reference to `operator delete[](void*)'
编译和链接命令是(短路):
"C:\Program Files (x86)\Atmel\Atmel Toolchain\AVR8 GCC\Native\3.4.1061\avr8-gnu-toolchain\bin\avr-g++.exe" -o PreAmp.elf <...> usart_controller.o <...> -Wl,-Map="PreAmp.map" -Wl,--start-group -Wl,-lm -Wl,--end-group -Wl,--gc-sections -mmcu=atxmega16a4u
所以我假设我使用的是g ++编译器而不是gcc编译器。但是在cpp中,如上所述,不可能声明一个可变长度数组。我的错误在哪里?
答案 0 :(得分:1)
我没有看到有关控制器使用的任何信息,IDE(如果有的话)。 但如果您正在使用atmel的Atmel工作室/ AVR工具链。
他们非常清楚地表明不支持新功能和删除功能,必须由用户实现。
这是有道理的,因为这不是桌面应用程序,而是uC上的实现。
http://www.atmel.com/webdoc/avrlibcreferencemanual/faq_1faq_cplusplus.html