mirror of
https://github.com/trc492/FtcTemplate.git
synced 2025-07-01 21:11:23 -07:00
Updated FTC SDK to 10.2.0.
This commit is contained in:
37
README.md
37
README.md
@ -270,7 +270,7 @@ This repository contains the public FTC SDK for the INTO THE DEEP (2024-2025) co
|
||||
This GitHub repository contains the source code that is used to build an Android app to control a *FIRST* Tech Challenge competition robot. To use this SDK, download/clone the entire project to your local computer.
|
||||
|
||||
## Requirements
|
||||
To use this Android Studio project, you will need Android Studio 2021.2 (codename Chipmunk) or later.
|
||||
To use this Android Studio project, you will need Android Studio Ladybug (2024.2) or later.
|
||||
|
||||
To program your robot in Blocks or OnBot Java, you do not need Android Studio.
|
||||
|
||||
@ -323,6 +323,37 @@ The readme.md file located in the [/TeamCode/src/main/java/org/firstinspires/ftc
|
||||
|
||||
# Release Information
|
||||
|
||||
## Version 10.2 (20250121-174034)
|
||||
|
||||
### Enhancements
|
||||
* Add ability to upload the pipeline for Limelight3A which allows teams to version control their limelight pipelines.
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Fix an internal bug where if the RUN_TO_POSITION run mode was specified before a target position, recovery would require a power cycle. A side effect of this fix is that a stack trace identifying the location of the error is always produced in the log. Fixes issue [1345](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/1345).
|
||||
* Throws a helpful exception if region of interest is set to null when building a PredominantColorProcessor. Also sets the default RoI to the full frame. Addresses issue [1076](FIRST-Tech-Challenge/FtcRobotController#1076)
|
||||
* Throws a helpful exception if user tries to construct an ImageRegion with malformed boundaries. Addresses issue [1078](FIRST-Tech-Challenge/FtcRobotController#1078)
|
||||
|
||||
## Version 10.1.1 (20241102-092223)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Support for Android Studio Ladybug. Requires Android Studio Ladybug.
|
||||
|
||||
### Known Issues
|
||||
|
||||
* Android Studio Ladybug's bundled JDK is version 21. JDK 21 has deprecated support for Java 1.8, and Ladybug will warn on this deprecation.
|
||||
OnBotJava only supports Java 1.8, therefore, in order to ensure that software developed using Android Studio will
|
||||
run within the OnBotJava environment, the targetCompatibility and sourceCompatibility versions for the SDK have been left at VERSION_1_8.
|
||||
FIRST has decided that until it can devote the resources to migrating OnBotJava to a newer version of Java, the deprecation is the
|
||||
lesser of two non-optimal situations.
|
||||
|
||||
### Enhancements
|
||||
|
||||
* Added `toString()` method to Pose2D
|
||||
* Added `toString()` method to SparkFunOTOS.Pose2D
|
||||
|
||||
## Version 10.1 (20240919-122750)
|
||||
|
||||
### Enhancements
|
||||
@ -751,7 +782,7 @@ This is a bug fix only release to address the following four issues.
|
||||
* Fixes [issue #260](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/260) Blocks can't call java method that has a VuforiaLocalizer parameter.
|
||||
* Blocks now has a block labeled VuforiaFreightFrenzy.getVuforiaLocalizer for this.
|
||||
* Added a page to manage the TensorFlow Lite models in /sdcard/FIRST/tflitemodels. To get to the TFLite Models page:
|
||||
* You can click on the link at the bottom of the the Manage page.
|
||||
* You can click on the link at the bottom of the Manage page.
|
||||
* You can click on the link at the upper-right the Blocks project page.
|
||||
* Fixes logspam when `isBusy()` is called on a motor not in RTP mode.
|
||||
* Hides the "RC Password" item on the inspection screen for phone-based Robot Controllers. (It is only applicable for Control Hubs).
|
||||
@ -1436,7 +1467,7 @@ Known issues:
|
||||
|
||||
This version of the software provides support for the REV Robotics Expansion Hub. This version also includes improvements in the USB communication layer in an effort to enhance system resiliency. If you were using a 2.x version of the software previously, updating to version 3.1 requires that you also update your Driver Station software in addition to updating the Robot Controller software.
|
||||
|
||||
Also note that in version 3.10 software, the setMaxSpeed and getMaxSpeed methods are no longer available (not deprecated, they have been removed from the SDK). Also note that the the new 3.x software incorporates motor profiles that a user can select as he/she configures the robot.
|
||||
Also note that in version 3.10 software, the setMaxSpeed and getMaxSpeed methods are no longer available (not deprecated, they have been removed from the SDK). Also note that the new 3.x software incorporates motor profiles that a user can select as he/she configures the robot.
|
||||
|
||||
Changes include:
|
||||
* Blocks changes
|
||||
|
Reference in New Issue
Block a user