How to add a Teensyduino (beta) release to PlatformIO

It's mostly a pointless warning for Arduino-like projects though since they typically don't use prebuilt libraries. I posted about this a while ago and Paul changed the necessary build flags to get rid of it in the first 1.6.x beta.
That's what I thought. So, I found it strange that I'm still getting those messages with the 1.60 b6 PlatformIO build. Maybe I'm doing something wrong. I can probably manually add the flag to get rid of those messages but I wonder why that is not automatically happening?
 
All the files are up for the latest Teensyduino 1.60 release. (It often takes the PlatformIO folks a little time to get the latest release up, so I'm providing this as a convenience.) All the platforms are listed below; just copy & paste into your platformio.ini file. I like to put it just underneath the platform = teensy setting.

INI:
platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/tool-teensy/mac
 
platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/tool-teensy/windows

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/tool-teensy/linux64

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/tool-teensy/linuxaarch64

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.60/tool-teensy/linuxarm

Please let me know if there are any issues.
 
Shawn:
I just installed your 1.60 update into this 15,503 with 15 libraries used code base and everything is working just fine. (MacOS Sequoia 15.7.4)

thanks,
Ed
 
All the files are up for the Teensyduino 1.61-beta1 release. All the platforms are listed below; just copy & paste the appropriate line trio into your platformio.ini file. I like to put it just underneath the platform = teensy setting.

INI:
platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/tool-teensy/mac
 
platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/tool-teensy/windows

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/tool-teensy/linux64

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/tool-teensy/linuxaarch64

platform_packages =
    framework-arduinoteensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/framework-arduinoteensy
    tool-teensy@https://github.com/ssilverman/teensy_betas.git#teensy_1.61-beta1/tool-teensy/linuxarm

Please let me know if there are any issues.
 
Back
Top