First, install Teensyduino 1.57. Version 1.56 and earlier had MSQ output, which is basically PWM but with extra noise shaping stuff. Versions 1.57 adds PWM output for Teensy 4. But you still might...
Type: Posts; User: PaulStoffregen
First, install Teensyduino 1.57. Version 1.56 and earlier had MSQ output, which is basically PWM but with extra noise shaping stuff. Versions 1.57 adds PWM output for Teensy 4. But you still might...
Maybe run commands to uninstall and reinstall the teensy board package? Maybe if run with the verbose flag, info about *why* arduino_cli didn't install teensy-discovery might be shown?
This is expected behavior. The 15 sec button press only wipes the flash memory on Teensy 3.5 & 3.6.
Teensy 4.0 & 4.1 added the "restore program" which is written into the flash after fully erase....
Any chance you can trim the code down to something small enough to share here in a forum message, but still reproduce the crash?
I'm not aware of any production flaws or problems. I can tell you every board was tested with a sine wave diving a 10 ohm resistor in the test fixture, though the test lasts only about 1 second.
...
SPI protocol lacks multi-master arbitration or other sharing mechanisms. How do you imagine 2 masters could possibly work on any SPI bus?
I sent you an email. We have several with cosmetic flaws, mostly just stray solder paste on the through-hole pads. Will be happy to sell you these at the normal price. PJRC doesn't price gouge!
The USB controller operates with DMA accessing linked lists of structs in memory to define the properties of all the USB endpoints and manage all the pending data transfers. If you really want to...
Maybe look for signs of damage to the wires between the 2 chips. Since pressing the button is at least causing the bootloader chip to reboot the main processor, there's some chance the parts might...
I don't know what's causing the problem, but I can answer this:
An ISR, or just ordinary code which calls noInterrupts() and never turns interrupts back on, can interfere with automatic...
Maybe the IDE only writes changes the preferences.txt when you quit?
The teensy_secure utility looks for your key.pem file in 1 specific place. The full path it will search is shown in the Tools > Teensy 4 Security window.
On Windows, that location comes from...
You could just edit the code to change MAX_AUDIO_MEMORY if you *really* wanted to use more.
Each audio block gives 2.9ms delay, since the block size is 128 samples.
Looks like it should work.
2 blinks means it can't communicate with the IMXRT chip, the JTAG port isn't responding.
Documentation on the blink code is on the page for that chip. Scroll down to "Troubleshooting & Diagnostic...
However, as a blind guess, this might be your problem:
Using pinMode() puts the pin into GPIO mode. If done before analogWrite(), as your message seems to say, it has no effect because...
Pins 0 and 1 are not used by USB serial. That's info which applies to boards like Arduino Uno, but not relevant to any Teensy.
Please show a complete program which can be copied into Arduino and...
Yes, a buffer overflow definitely could "crash" that way. But better to think "get stuck" rather than "crash".
For example, you could overwrite variables in RAM used by USB Serial, or hardware...
Does the Program signal have 3.3V when you're not pressing the pushbutton?
Haha, that's pretty much the exact opposite of how I've used the 2 that live on my workbench. I almost never bother to screw them down tight (or at all) and I move them between various carrier...
Ok, ran the test again on both boards, this time using the screw to hold them done.
Exactly the same result, 1s on pin 22 & 28 and 0s on all other pins.
29093
I tested with the card tilted, exactly as you see in the photo. I too was lazy about using a screwdriver to secure it. ;)
I wired all the ATP pins to GND and ran it here on both MicroMod boards on my workbench.
29092
Pins set to input
Pin 0 state: 0
Pin 1 state: 0
Pin 2 state: 0
Does the problem change if you remove the diode and connect the power with just a wire? Or maybe use a DC voltmeter to check the actual power supply voltage arriving at the VIN pin?
An issue was...
I keep a couple MicroMod boards on my workbench for software testing. I'm not seen any pins failing. But most of the tests I usually run are meant to test the more complex libraries like Audio,...
I can't speak for Sparkfun. I can only comment on PJRC's role. And I suppose I could dabble in some guesswork...
I can tell you every MicroMod Teensy is tested on a test fixture PJRC made for...
You can use extmem_malloc() to dynamically allocate the PSRAM which isn't already consumed by EXTMEM variables.
The raw speed of internal RAM, either tightly coupled RAM1 or normal RAM2, isn't going to be the limiting factor for this sort of application. Plenty of other aspects of how your code is written...
Many people probably won't touch IDE 2 until Arduino calls it officially released.
I've been considering bringing recent Arduino CLI into the Teensyduino installer for Arduino 1.8.19, so we can make use of the improved caching features.
In Arduino, click Tools > CPU Speed. Changes take effect next time you upload.
As a first very simple test to check if slower speed helps, try setting Tools > CPU Speed to only 24 MHz and upload again.
Looks like they carry Teensy 4.1, getting it from Sparkfun.
https://electronics.semaf.at/navi.php?a=2488&lang=eng
Sparkfun should soon have them back in stock. Maybe in a week or two, ask...
I'm catching up to messages I've missed over the last few days. Looks like msg #23 to #30 on this thread about about different case than the msg #1 - #22. Is everything after msg #23 specifically...
I believe you should just get a Teensy for audio and USB MIDI, and save the Pico for other less intensive projects.
It really should work.
Can you show us photos of your wiring? Maybe there an issue we'll be able to see.
Thanks. Made some edits, updating the page now.
Yeah, it's meant to be a quick overview, even though it turned out over 1800 words long! I had meant to write quite a bit more about the 3 audio...
Nobody really knows. So far, at least as far as I know, nobody has built such a board and confirmed whether it works.
NXP documents only a single JTAG ID on page 188 of the reference manual. So...
Opps, the correct link is
https://www.pjrc.com/teensyduino-1-57-released/
Here is a blog article which tries to explain the major changes in 1.57.
https://www.pjrc.com/teensyduino-1-57-released/
Hopefully I got everything important mentioned? And everyone? Did I...
Can confirm, F1 is a PTC "self resetting fuse", which is really only a resistor that increases resistance with high temperature when large current flows.
Arduino's forum would be a better place to ask for help specific to Arduino Portenta H7.
https://forum.arduino.cc/
This forum is about Teensy, not Arduino Portenta.
SoftwareSerial won't work. FlexSerial from Kurt's FlexIO_t4 library is probably your best chance.
I really don't know if FlexSerial supports 6 ports operating full duplex simultaneously, but this...
If you read EEPROM.h, you'll see it just calls core library functions like eeprom_read_byte(), eeprom_write_block(), etc. These functions are the eeprom API defined by AVR libc, since Teensy...
FWIW, a similar problem sometimes happens on Linux, but it's pretty easy to diagnose by the kernel syslog messages. It's almost always a scenario where someone uses an unusual Linux distro designed...
Ah, I missed the screenshot earlier. Pretty clear Windows isn't loading its driver. Why is a mystery.
Typically Windows drivers have 3 parts, the actual device driver code which often has .SYS...
Oh how I wish I knew why Windows sometimes does this, and of course how to fix it. But I don't. Well, other than "fix" by simply using another computer which isn't messed up.
Questions of "what"...
It certainly should work. Schematic looks ok.
Same basic advise as msg #19 on that old thread, start by measuring the 3 clocks at the CS4344 chip. If you only have a multimeter, just measure DC...
I'm having trouble parsing this. There's a problem with uploading to lockable boards associated with something connected to Serial6 pins? Sounds like another Teensy is connected, but I'm just not...