- Is there any direct method to change or store the value of a configuration register (other than the ones listed in the "Project Options/Configure" tab) without adding C code? Let's say I need a TMR1 overflow interrupt with a precise lapse of 100 ms and I don't want to call the interrupt macro many times with a counter, in C I usually could initialize the TMR1H and TMR1L registers in each interrupt call with the appropiate values. In flowcode, do I need a custom interrupt for this?
- I noticed I can create an array of any kind of variable (by the way, excellent feature!!), but I'd like to know if I can refer to an array of bools bit by bit or as a byte simultaneously. I saw flowcode has some nice typecasting functions, but I don't know if I could use any of those. It would be something like this in C:
union {
unsigned char byte;
struct{
unsigned sensor1 : 1;
unsigned sensor2 : 1;
unsigned sensor3 : 1;
unsigned sensor4 : 1;
unsigned sensor5 : 1;
unsigned sensor6 : 1;
unsigned sensor7 : 1;
unsigned sensor8 : 1;
}bitv;
}alarms;
alarms.byte = 0; // initialize alarms control byte
alarms.bitv.sensor4 = true; // activate sensor 4 alarm
What would be the best approach to handle this?
I'll probably have more questions in the future, but knowing this things would be a great place to start!

Thanks!!