Search results

  1. B

    Hacking open source repositories

    Was wondering if people are aware of this activity: TeamPCP hacking GitHub Scares the heck out of me. Seems that lately a lot of big sites are having issues. They specifically mention PyPi repositories. Teensy sure has a lot of exposure to GitHub. Hope it's being watched? checked? or...
  2. B

    Teensyduino 1.62 Beta #5 - Release Candidate

    By the way, the initial compilation seems to compile much faster, almost faster than previous version re-compiles. Guess this has something to do with the also observed no 'Intel' in Activity Monitor when running Arduino.
  3. B

    Teensyduino 1.62 Beta #5 - Release Candidate

    macOS26.5.1,Arduino 2.3.10, with large program with a bunch of libraries in my documents/Arduino/Library FYI Got lazy and didn't follow my personal procedure for major updates. Every thing compiled without errors or warnings awesome! However buttons that used gpio_expander didn't respond...
  4. B

    Requirements for libraries in Teensy distribution

    Just curious about what's involved with having a library distributed. I'm sure there's a document but I can't find it.
  5. B

    Teensyduino 1.60 Released

    From the start of a typical compile: Detecting libraries used... /Users/xx/Library/Arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall .....
  6. B

    Teensyduino 1.60 Released

    Arduino lists as 'macOS Apple silicon' which is ARM
  7. B

    Teensyduino 1.60 Released

    Yes, it runs great on Apple silicon with Arduino 2.3.8. Thanks for all the work Paul !
  8. B

    Here is a sixth beta test for Teensyduino 1.60

    MacBook Air, Tahoe 26.2, IDE 2.3.7 working great. FYI Arduino finally made the terminal window properly cut and paste the whole session without skipping anything. (Only took 2-3 years to fix?)
  9. B

    New lwIP-based Ethernet library for Teensy 4.1

    Working fine for me still although I haven't added any of your new stuff yet. Oh come to think of it, Aduino 2.3.7 with Paul's beta6 didn't notify me to update, I saw email of this thread.
  10. B

    Request for help measuring power consumption of Energy-Efficient Ethernet (EEE)

    Sorry for taking so long to get back. I have a 121GW multimeter from EEVBlog. It's an awesome meter and a little pricey. For the specific task you are looking at this video does a good job of explaining the issues. The 121GW does the same trick as the uCurrent gold in the video as its design...
  11. B

    Request for help measuring power consumption of Energy-Efficient Ethernet (EEE)

    I can log the USB power with 10uA resolution with 5 measurements per second, but with no triggering or precise timing. Also could try with an oscilloscope and current probe with less resolution but timing.
  12. B

    Request for help measuring power consumption of Energy-Efficient Ethernet (EEE)

    Would this be measuring the USB current or something on the ethernet wires?
  13. B

    SARCASM: an (over-engineered) Rubik's cube solving robot.

    That is an amazing project, and I thought that I was THE NURD. The software, hardware, 3d printing and maybe some electrical design by one person are inspiring. You even made it fun for your kids, which I could never do. You have inspired me to submit my automatic bicycle shifter I have been...
  14. B

    Teensyduino 1.60 Beta #5

    the second while: while(x>0 && z>0){ should have been (or was originally) : while(x>y && z>0){ but demonstrates that even a test of positiveness fails.
  15. B

    Teensyduino 1.60 Beta #5

    Problem with optimization settings when testing around max integer. Arduino IDE 2.3.6, T1.6b5. This worked back in 2015 :) void setup() { int x,y,z; Serial.begin(9600); while (!Serial) ; x=2; y=0; while(x>y){ y=x; //keep the last value x*=2; }...
  16. B

    Frightening rare failure... Any wisdom?

    I'm guessing this is a bad solder joint on the large bga (Ball Grid Array) package. The crystal is connected to the worst possible location on the package bga stress wise. see: https://forum.pjrc.com/index.php?threads/teensy-3-6-program-loader-and-i-o-glitches.40638/...
  17. B

    Purpose of Q1 on Teensy 4.1?

    I guess reverse polarity protection with a .04 ohm on resistance instead of the .7V drop of a diode.
  18. B

    Teensyduino 1.60 Beta #5

    Installed on MacBook Air, Sequoia 15.6, Arduino IDE 2.3.6, no problems. Not sure if instructions 4 and 5 are mixed up. Seems you'd need to install b4 indexing? That's what I did. With the restart it doesn't matter anyway. Only looked at a T3.2 program, 48mhz, faster, i2c_t3, SPI...
  19. B

    Printing out a crash report to an ILI9341 display

    try tft.print(c); instead of tft.drawFontChar(c);
  20. B

    SparkFun To Manufacture Teensy

    Wonder is Sparkfun might restart T3.2
  21. B

    Laboratory instrumentation amplifier that can accommodate high impedance and high bandwidth and has a 16 bit 1MSPS ADC

    You asked for it :) 1. The KiCad is a few versions out of date, which wouldn't matter except the libraries are significantly different and parts from your custom library are missing. Starting around version 6, (9 is current) there is an 'Archive Project' button that will zip all the symbols...
  22. B

    Laboratory instrumentation amplifier that can accommodate high impedance and high bandwidth and has a 16 bit 1MSPS ADC

    Interesting project but I have issues, the main one being issues is turned off in Github so I can't add constructive criticism.
  23. B

    Beware! T4x RTC power consumption

    ? As noted in the original post the data sheet says .02mA which is 20uA, not a few uA. Even if I could get 20uA that would be 90 instead of 50 days, still useless for my application.
  24. B

    Teensy 4.0 and CMSIS + SDK

    link should be: https://www.stupid-projects.com/posts/using-nxp-sdk-with-teensy-4-0/
  25. B

    Teensyduino 1.60 Beta #3

    Just reporting noticed today that issue at #27 seems to have resolved itself with no input from me except possibly upgrading to Sonoma 14.7.1 I'll be updating to Sequoia 15.1 soon and will report.
  26. B

    Teensyduino 1.60 Beta #3

    On M2 Macbook Air with Sonoma 14.6.1 and IDE 2.3.3 Tried all the shenanigans in earlier in post for win and mac but still get no security stuff: Read security was not recommend from M2 mac but it should be possible? Oh and added: Should Teensy Loader show 1.60-beta3 vs 0.60?
  27. B

    static variable not initializing when following millis()

    I can confirm that it runs correctly on 1.60 beta 3. Maybe I'll make the switch to beta tester. What could go wrong ? :)
  28. B

    static variable not initializing when following millis()

    Thanks for checking. Problem seems to occur only on Teensy 3.2 3.5 and 3.6 Not on 4.0 or 4.1
  29. B

    static variable not initializing when following millis()

    Using Arduino IDE 2.3.3 on MacOS 14.6.1 Sonoma, Teensy Loader 1.59 The code below: int gdefaultState=7; void setup() { Serial.begin(115200); while(!Serial); ; Serial.printf("in setup gdefaultState=%d \n", gdefaultState); } void loop() { static boolean finished=false; static...
  30. B

    FlexCAN_T4 - Teensy 4.1 Not sending ACK bit

    I'm not familiar with that scope. Is the signal really <1V. I had an early T4.1 where that particular 3.3V pin was not hooked up. Is it 3.3V?
  31. B

    New lwIP-based Ethernet library for Teensy 4.1

    Will switch to GitHub.
  32. B

    New lwIP-based Ethernet library for Teensy 4.1

    Observed no compile. Quit, deleted the cache as above, then restarted reinstalled v29 then same. This any help?
  33. B

    New lwIP-based Ethernet library for Teensy 4.1

    @shawn Dang, can't understand how it's not showing up for you. I had been deleting the cores and sketches cache at /private/var/folders/q9/p*/T/arduino, YRMV, but haven't tried deleting and reinstalling the libraries.
  34. B

    New lwIP-based Ethernet library for Teensy 4.1

    client.close() instead of stop() caused v0.28 to also print the "Host: 192.168.1.97" but didn't effect it's speed. v0.29 seemed unaffected and the same slowness. Interesting that the Get and Host line print at nearly the same time after a long 4 to 5 second pause when each line requires a new...
  35. B

    New lwIP-based Ethernet library for Teensy 4.1

    The extra line (Host: 192.168.1.97) occurs when the 'real' time is > ~3.5 seconds. Sometimes it takes 3 or 4 tries to build up to >3.5 but becomes about 5 seconds. Even if I let it alone for 5 minutes the 4-5 second delay will continue. Unplugging the teensy and replugging and using just the...
  36. B

    New lwIP-based Ethernet library for Teensy 4.1

    Found another clue. Running blinkServer #226 at 24Mhz and then using the served page button or the time curl I get an extra line on the Arduino terminal in v0.29 that is not in my code: GET / HTTP/1.1 25 Host: 192.168.1.97 26 GET / HTTP/1.1 27 Host: 192.168.1.97 28 GET / HTTP/1.1...
  37. B

    New lwIP-based Ethernet library for Teensy 4.1

    Edited the current draw issue above but the speed issue at 24Mhz remains. Using the time curl test repeditively with about 1 second after a response the 'real' time increases about 1 sec each try until it levels at about 6 seconds. The same procedure with v0.28 stays below .06 seconds.
  38. B

    New lwIP-based Ethernet library for Teensy 4.1

    I'm running on a wireless local network on a M2 mac Air. Tried the curl at 24Mhz, Faster: v0.29: real 0m4.075s <--- user 0m0.022s sys 0m0.015s v.028: real 0m0.060s user 0m0.020s sys 0m0.014s The reason for using 24Mhz is in my app it draws 95mA vs 322mA @ 600Mhz. Don't...
  39. B

    New lwIP-based Ethernet library for Teensy 4.1

    Sorry, I messed up posting as I don't see it here. Had a table with some numbers. I am running the teensy at 24Mhz. At 600Mhz it seemed similar.
  40. B

    New lwIP-based Ethernet library for Teensy 4.1

    Thought maybe the sprintf might be the problem since the change notice said printf had error correction added but removing it from the main loop didn't help. I do occasionally get 3-4 second delays, but usually ~2. BTW I never heard from anyone at all when I posted this code before. I thought...
  41. B

    New lwIP-based Ethernet library for Teensy 4.1

    This code I posted a few years ago #141 puts up a web page that allows you to turn the onboard LED on and off. It is almost immediate in v0.28 and about a second in v0.29. Don't know why it's not 4-5 seconds like my other program. /* blinkServer 2023/8/22 * cleaned up version of...
  42. B

    New lwIP-based Ethernet library for Teensy 4.1

    Seems to effect both UDP and HTTP.
  43. B

    New lwIP-based Ethernet library for Teensy 4.1

    Wow, you guys really keep at it. Thanks Installed v0.29 over 28 just now using the automatic update in Arduino 2.3.2. Having an issue where replies from a teensy 4.1 server are taking 4-5 seconds for some reason. Went back to v0.28 and all is well again with replies seemingly instantaneous.
  44. B

    How do you organize large sketches?

    Sorry, I forgot to mention it happens regardless of using subfolders.
  45. B

    How are you mounting the ethernet magjacks from the 4.1 kit?

    The one on the right is obvious. The one on the left is my favorite for custom printed boxes. You do a boolean subtract of it from the box wall and when printing pause when you get to the top, insert it and keep printing. Both are printed face down with no supports.
  46. B

    How do you organize large sketches?

    IDE 2.x allows you to get away with murder but you will eventually get caught if you're not carefull. I have gotten used to using python and swift where .h files are not used. If you write perfect code IDE 2.x will just piece all the .ino files together no matter if no function prototypes, or...
  47. B

    Multi SPI slave on a single teensy

    Seems like opening a larger can of worms. So when your done you do everything over with the real sensors?
  48. B

    Teensy 3.2 End Of Life

    Digikey currently has lots of chips and no obsolescence notification that they are usually good about. https://www.digikey.com/en/products/detail/nxp-usa-inc/mk20dx256vlh7/3742957 Could it be there is still a need for this chip with its many advantages over other newer, cheaper, faster chips...
  49. B

    All you need to know about USB-C

    That was really interesting! This USB-C head2head shows how you get what you pay for.
  50. B

    New lwIP-based Ethernet library for Teensy 4.1

    Thanks, pulled latest, fixed.
Back
Top