Haha Mission: Impossible - Rogue Nation (2015)I can neither confirm nor deny anything!
not to talk about 192 MHzNo matter what it is, the *.ld files I like.
I see defines for "__MK64FX512__" and "__MK66FX1M0__", so I'm wondering if two versons of the next gen Teensy are in the works?
Haha Mission: Impossible - Rogue Nation (2015)![]()
//
// Pi_2
//
// Steve Curd
// December 2012
//
// This program approximates pi utilizing the Newton's approximation. It quickly
// converges on the first 5-6 digits of precision, but converges verrrry slowly
// after that. For example, it takes over a million iterations to get to 7-8
// significant digits.
//
// I wrote this to evaluate the performance difference between the 8-bit Arduino Mega,
// and the 32-bit Arduino Due.
//
// http://tronixstuff.com/2014/02/12/review-intel-galileo-arduino-compatible-development-board/
#define ITERATIONS 100000L // number of iterations
#define FLASH 1000 // blink LED every 1000 iterations
void setup() {
pinMode(13, OUTPUT); // set the LED up to blink every 1000 iterations
//digitalWrite(13, LOW);
Serial.begin(9600);
delay(1000);
}
void loop() {
static int count=0;
unsigned long start, time;
unsigned long niter=ITERATIONS;
unsigned long i;
float x = 1.0f;
float pi=1.0;
Serial.print("Beginning ");
Serial.print(niter);
Serial.println(" iterations...");
Serial.println();
digitalWrite(13, HIGH);
start = millis();
for ( i = 2; i < niter; i++) {
x *= -1.0f;
pi += x / (2.0f*(float)i-1.0f);
}
time = millis() - start;
digitalWrite(13, LOW);
pi = pi * 4.0f;
Serial.print("# of trials = ");
Serial.println(niter);
Serial.print("Estimate of pi = ");
Serial.println(pi, 10);
Serial.print("Time: "); Serial.print(time); Serial.println(" ms");
delay(1000);
}
... IRC 48 MHz clock for crystal less usb ... Maybe we can use the USB now when running the core clock below 20 MHz.
some 100ms more for T3.2This benchmark will self destruct in 14 milliseconds....
This benchmark will self destruct in 14 milliseconds....
I feel that Paul has already addressed this issue...
so this is 2 1/2 years in the making and may never happen, at least not in the form as originally intended, or desired by us.I've actually been working on Teensy++ 3.X. It's too early to discuss the details, but I can assure you, I am indeed working on a Teensy++ 3.1 and I'm pretty sure you'll like it.
Everyone moaning in this thread is giving him more and more reason to tell us nothing at all.
I do not expect increased desire for pushing higher performing Teensy.
Let me add another 2 cents to the whole lot of good (and sometimes contradictory) suggestions here.
There was a suggestion to add pads for i2c pull-ups in the beginning of the thread. I second that wholeheartedly. Actually since not everybody is good with iron I'd rather see pull-ups already in place with an option to cut the jumper to disconnect them.
Adding on-board SD socket is good idea, but so is adding many other devices. That is why I think having access to more processor pins trumps arbitrary selected add-ons. In short, SD is only good if you do not have to sacrifice pins for it.
Having said that, a lot of people experimenting with balancing robots and drones nowadays. Having something like MPU-9250 and pressure sensor would turn Teensy into great control board for them. Especially since chips can be connected to SPI/I2C channels not routed to external pins. Waste not, want not!
DFU sounds interesting but will it drive up cost? Same goes for AES/DES its not some simple thing to create and will cost time/money to implement if it can be implemented. Appeasing the Commercial guys will most likely annoy the DIYers if it drives up costThe DFU discussion earlier on the thread certainly caught my attention. If you want Teensy to be bought in commercial quantities you want to appeal to commercial customers. For them ability to send software updates to their users is extremely important. And of course users should be able to install it without having any idea how things work. DFU can solve this.
And in another nod to commercial world the ability to protect our software is no less important than protection of Teensy firmware for you. So it would be nice to have an option for AES/DES in bootloader/compiler chain. Especially for DFU.
Finally, if you have more space on bigger board, how about beefing up voltage regulator? Or even adding another one, say to power potentiometer-based analog sensors. If there are a dozen of them in parallel the current becomes quite challenging.
All of the items on this checklist can easily be accommodated on a daughter card that the teensy can then be mounted on. Or plan on DIY a all in one solution. The boot loader chips are freely available.
Thank you, I was wondering if I was the only one thinking this.... Paul mentioned multiple times in this thread, what Teeensy 3++ with have, how many pins and more important what will not be supported.
Agreed!
@ wwwoholic, Donziboy2
After trying multiple times to provocate Paul to leak final info (i.e release date) on Teensy 3++ (or 4.0 as I prefer to call it), I would also say, that the object of this thread (high performing teensy) seems so advanced, that there is no opportunity anymore to come up with a wish list of features. Paul mentioned multiple times in this thread, what Teeensy 3++ with have, how many pins and more important what will not be supported.
Thank you, I was wondering if I was the only one thinking this.
I am just looking foreword to getting my hands on one of these and figure out what all I can do with it, and most likely will build my own carrier boards to experiment with.