Hello ,
I have a variable of type uint32_t and I wanted to convert it to type string
How to do that ?
Hello ,
I have a variable of type uint32_t and I wanted to convert it to type string
How to do that ?
Check the Standard C library; eg, sprintf()
I get a fault when I use sprintf. Am I missing a configuration setting in proj.conf?
char *sprinted = "hello"; int x = 28; sprintf(sprinted, "%d", x); printk("%s", sprinted);
I get a fault when I use sprintf. Am I missing a configuration setting in proj.conf?
char *sprinted = "hello"; int x = 28; sprintf(sprinted, "%d", x); printk("%s", sprinted);