I am attempting to use my BL2010 to source voltage on the Digital Outputs.
I have relocated R32 0-ohm to R34 as directed in the user’s manual.
#undef OUTPUT_DRIVE
#define OUTPUT_DRIVE SOURCING
#memmap xmem
#class auto
main(){
brdInit();
digOut(0, 1);
digOut(1, 1);
digOut(2, 1);
digOut(3, 1);
digOut(4, 1);
digOut(5, 1);
digOut(6, 1);
digOut(7, 1); // <– break point set here so the code doesn’t exit.
}
When I use my voltmeter on J9 pins 0 through 6, they all measure 0v.
I have 24v applied to ‘K’ on the J2 header.
I was expecting to measure this 24 volts on my digital outputs.
What am I missing?
Thank you