Might help to know which approach you are implying here...
And yes, there are several places in code that have had to deal with call backs wanting additional information, like which IO pin.
...
Type: Posts; User: KurtE
Might help to know which approach you are implying here...
And yes, there are several places in code that have had to deal with call backs wanting additional information, like which IO pin.
...
I would suggest the same as @defragster mentioned, in addition I would build example programs using Teensyduino and then use objdump to disassemble code and look to see the actual startup...
Sorry, I will leave some of those questions up to the C/C++ compiler/linker guru types to maybe answer some of this.
If this generates any code that tries to assign anything at run time to that...
Hi again @M.Melani,
I will be honest and say I have no clue what this would actually do:
#pragma abs_address:0x000001A4
void(* My_F_handler[])()={ My_F };
#pragma end_abs_address
What is...
Hi again,
I guess the hard part for some of us to understand is exactly what your goal is. Yes I understand wanting to learn how it works...
I also know there are ones up here who dislike...
Also google and the like are your friend:
Example weak symbols: https://en.wikipedia.org/wiki/Weak_symbol
Alias: http://www.keil.com/support/man/docs/armcc/armcc_chr1359124980906.htm
Every...
Not sure what you are asking?
Again if you look at mk20dx128.c You will see that the table is setup depending on board:
As for T3.2, the Interrupt number for PORTC isr is different than for...
That is Young... Some of us are considerably older... Learning is great at any age! ;)
For me, learning here, is I learn by example... For example I mentioned try using attachInterruptVector.
...
Each time I read this thread, I am still wondering what exactly are you trying to accomplish?
Are you trying to completely emulate the current code? If so you should probably just use the...