I'm using softserial to communicate with a bluetooth modem and I am pushing strings to the serial by using the following code:
char bt_string = "test";
bluetooth_println(bt_string);
I need to be able to replace the string with
printf(" Error: cmd=%02hX, res=%02hX\n", CMD_SEND_CID, res);
I have tried the following code
char bt_string;
sprintf(bt_string, " Error: cmd=%02hX, res=%02hX\n", CMD_SEND_CID, res);
bluetooth_println(bt_string);
But it fails to output anything. I'm obviously misunderstanding something. Thanks for any help.
You need to provide a buffer for your string.
eventually, for safety you can use
snpritf
to avoid any buffer overflow: