Thanks,
But I don't mean via the programme button, but from the "Teensy Loader" which uploads the hex to the teensy. Normally you don't need to press this little button. But sometimes this doesn't work and I do have to press the button and wonder why?
Dear all,
I regularly use the Teensy 4.1
And when a programme is already in the teensy, very often the automatic upload function to also the manual upload function of the "Teensy Loader" does not work.
When you then press the reset button, the programme does upload nicely.
This is tricky...
Hai All,
Obtaining an IP via DHCP works fine, when an IP is fixed this does not work. The IP can then also not be pinged from a computer. When the IP is obtained from a DHCP server, pinging works fine.
I use Arduino 1.8.19 and Teensyduino 1.59
With NativeEthernet 1.0.5 which is in Teensyduino...
Thanks for your message.
I know that, but this one uses the sd card reader on the audio board.
I would like to use the sd card reader on the Teensy 4.1 and not the sd card reader on the audio board.
Hai all.
The audio stream plugin works with the wiznet netwerk cards, is it possible to make it also work with the network chip found on the teensy4.1?
Thanks
It is a web page using js and Ajax. The web value of the components (Ajax) are refreshed every 1000mS. The web page should be able to contain at least about 20 components.
And be viewable from multiple computers and mobile devices simultaneously. Hence, I am looking for the optimal number of...
Hello all,
I am using "QNEthernet" for the Teensy 4.1 and have a web server running on it with Ajax and JS.
Now there seems to be a maximum of 8 sockets set, in which header file can you adjust this and what would be the maximum fetch bare?
Thanks in advance.
Hello Shawn,
First of all, thank you very much for your help.
I am now trying to do it out with "client.writeFully" I modified a piece of the programme for this, but when compiling I get the following error.
What am I not doing right?
Thanks in advance.
Hello all,
I have a web page in Teensy 4.1 and am using CSS and Ajax. The webpage is quite large with a lot of data and I notice that way too much data is being sent and the buffer cannot handle the data.
Whole blocks of data are disappearing.
Now I put a "Delay(50)" in each piece of data so...
Hello all,
I've now replaced Nativeethernet for QNEthernet and now I'm trying to send a 8400 bytes image to a browser but it doesn't work, how do I do that.
The image is in the progmem "prog_char logo[] PROGMEM = {......"
and send it like this: "server.send(200, F("image/jpeg"), logo);"
What...
When more connections are established, the library pauses every now and then.
This stops the whole program for a few seconds.
How can I fix that.
I am using version 1.0.5
Thanks in advance.
Hi All,
I have a program with a web server and Ajax, every now and then I get an error with "StateErr: -28"
and every now and then I get the message: "No data available, closing socket"
and then the program stops for a while to continue later.
I see that through a runled which blinks every...
Hai All,
My server port is stored in the eeprom.
The server must intialize before its read from the Eeprom.
How can this after the port read from the Eeprom?
uint16_t webPort = (EEPROM.read(9) * 256) + EEPROM.read(10) ;
EthernetServer webServer(webPort);
Thanks.
The number of simultaneous connections it can handle.
With the W5100 there are 4 and with the W5500 there are 8.
How many are there with the T4.1 with ethernet interface?
Thanks.
Hai,
I have a project withe a Teensy 3.6 an i will monitor the memmory.
When the program run, i see:
==== memory report ====
free: 3670043 Kb (1835021.3%)
stack: 524480 Kb (262240.0%)
heap: 68 Kb (33.9%)
**warning: stack and heap crash possible
The response like not good.
I have use...
Thanks,
In the library, see this:
#elif F_CPU == 180000000
#define MCLK_MULT 16
#define MCLK_DIV 255
#define MCLK_SRC 0
Can you tel me what the formula is for the setting 's.
Thanks.
The SGTL5000 codex have the follow Sampling Frequency 's: 8, 11.025, 12, 16, 22.05, 24, 32, 44.1, 48, 96.
Can the Audio library also 8K Sampling Frequency handle?
Thanks.
Hi,
Sometimes, when i start of stopping a play, the Teensy are into Watchdog / COP reset.
What is wrong,
Thanks.
The Watchdog reset function is:
unsigned long wdt_millis = 0;
void reset_watchdog() {
dma_watchdog_point = 3;
if (millis() > wdt_millis) {
wdt_millis = millis() + 250...
I have a Teensy 3.6 with a battery, when i reset the Teensy, the clock is ok.
When i lost the power, the time is from te HEX file?
Also with the Example "TimeTeensy3" what is this???
Thanks.