Hi,
I would like the PIE block to call a certain function when an interrupt fires:
bios.PIE.instance("PIE_INT1_1").fxn = prog.extern("my_function");
However, I also want my_function to be a static function local to the .c file it is written in to protect it from access by other source files. Is there a way to grant access to the bios for this function, but to no other source files?
Thank you!