yoc1983,
Thanks. Theres so much i still don't understand, but getting there slowly.
Mike
Type: Posts; User: MikeA
yoc1983,
Thanks. Theres so much i still don't understand, but getting there slowly.
Mike
Just noticed you have not braced your loops {} so you are overwriting data
for(int i = 0; i < graph_size ; i++)
{graph[i]=i;}
for(int i = 0; i < graph_size ; i++) ...
Hi,
sounds like the serial line is dumping data. Try putting a delay in your for loop.
Hi,
Can anyone explain why I need to set the NVIC priority for the PIT1 timer in order to use it to trigger the DMA? The code is a modifications of code on a previous thread to allow two different...
Theremingenieur,
Your post to my later query solved the problems that I was having on the comparator and PITimers. Enabling them and the clock in the SIM modules brought them to life. Now all I...
Hi,
thanks for all the help. I have been studying the core files and I think I am getting the hang of using this chip. Also having to learn about the intricacies of C++. I gave up electronics...
Hi,
Thanks for that. I am aware of the SIM module but had not read it in detail. Given the manual is nearly 2000 pages long it takes a lot of studying and I had been concentrating on working out...
Hi,
I have just stared working with the teensy 3.5 and I am having a frustrating time with the comparators and now the PITimers. Whenever I access (even just read a register), the serial interface...
Hi, Grant.
have you had any success? I have just started using a Teensy 3.5 and I found the same problem. The code does not run, or at least there are no serial line messages being printed.When I...
Hi,
Its amazing what posting a problem can do to get the brain cells going to find an answer. I had not realised that the 'Arduino' file in the applications directory is a folder. Its all buried...
Hi,
I have just come back to getting going with Arduino and looking at using teeny 3.5. I have also just changed to a Mac, so this is a bit new to me. I managed to transfer all my old files, and...
Paul,
thanks for the speedy response. your pointers will allow me to work out what I need to do. The intervaltimer function will make that side easy. I just have to work out how to use the ADC. It...
Hi,
I have an application that uses the Arduino mega, but I have run out of proceessing power and I am considering porting to the teensy 3.5. However I make extensive use of interrupts on the...