You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ThrowTheSwitch Forums
Hello,
I have a problem with the module generator. I define a directory with my templates and use the directive :boilerplate_files: in the project.toml file. But when I create a new module, I have this exception: 🧨 EXCEPTION: malformed format string - %= 🌱 Ceedling could not complete operations because of errors
Here is the template file I use: ``` /******************************************************************************* * File : <%= module_name %>.c * Author : <%= author || "Not specified" %> * Date : <%= date || Time.now.strftime("%Y-%m-%d") %> * Description : Implementation of the module <%= module_name %>. ******************************************************************************/
#include "<%= module_name %>.h"
/* Public function */ */ void <%= module_name %>_init(void) { /* Module initialisation */ } ```