Skip to content

Commit

Permalink
⬆️3.2.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ssejrog committed Dec 15, 2024
1 parent 779a969 commit 07a6079
Show file tree
Hide file tree
Showing 9 changed files with 266 additions and 296 deletions.
Binary file not shown.
Binary file modified EZ-Template-Example-Project/firmware/EZ-Template.a
Binary file not shown.
534 changes: 252 additions & 282 deletions EZ-Template-Example-Project/include/EZ-Template/drive/drive.hpp

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class tracking_wheel {
* Creates a new tracking wheel with a Rotation sensor.
*
* \param port
* the port your Rotation sensor is plugged into
* the port your Rotation sensor is plugged into, make this negative if reversed
* \param wheel_diameter
* assumed inches, this is the diameter of your wheel
* \param distance_to_center
Expand Down Expand Up @@ -111,7 +111,7 @@ class tracking_wheel {
* This is useful for custom encoders.
*
* \param input
* Ticks per revolution
* ticks per revolution
*/
void ticks_per_rev_set(double input);

Expand All @@ -124,7 +124,7 @@ class tracking_wheel {
* Sets the gear ratio for your tracking wheel.
*
* \param input
* Gear ratio of tracking wheel
* gear ratio of tracking wheel
*/
void ratio_set(double input);

Expand All @@ -137,7 +137,7 @@ class tracking_wheel {
* Sets the diameter of your wheel.
*
* \param input
* Wheel diameter
* wheel diameter
*/
void wheel_diameter_set(double input);

Expand All @@ -159,4 +159,4 @@ class tracking_wheel {
double ENCODER_TICKS_PER_REV = 0.0;
double WHEEL_TICK_PER_REV = 0.0;
};
}; // namespace ez
}; // namespace ez
14 changes: 7 additions & 7 deletions EZ-Template-Example-Project/project.pros
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@
"target": "v5",
"templates": {
"EZ-Template": {
"location": "C:\\Users\\union\\AppData\\Roaming\\PROS\\templates\\[email protected].1",
"location": "C:\\Users\\union\\AppData\\Roaming\\PROS\\templates\\[email protected].2",
"metadata": {
"origin": "local"
},
"name": "EZ-Template",
"py/object": "pros.conductor.templates.local_template.LocalTemplate",
"supported_kernels": "^4.1.1",
"system_files": [
"include\\EZ-Template\\piston.hpp",
"include\\EZ-Template\\auton.hpp",
"include\\EZ-Template\\drive\\drive.hpp",
"include\\EZ-Template\\api.hpp",
"firmware\\EZ-Template.a",
"include\\EZ-Template\\util.hpp",
"include\\EZ-Template\\auton_selector.hpp",
"include\\EZ-Template\\piston.hpp",
"include\\EZ-Template\\sdcard.hpp",
"include\\EZ-Template\\auton.hpp",
"include\\EZ-Template\\tracking_wheel.hpp",
"include\\EZ-Template\\drive\\drive.hpp",
"include\\EZ-Template\\util.hpp",
"include\\EZ-Template\\slew.hpp",
"include\\EZ-Template\\api.hpp",
"include\\EZ-Template\\PID.hpp"
],
"target": "v5",
"user_files": [],
"version": "3.2.0-rc.1"
"version": "3.2.0-rc.2"
},
"kernel": {
"location": "C:\\Users\\union\\AppData\\Roaming\\PROS\\templates\\[email protected]",
Expand Down
Binary file renamed [email protected][email protected]
Binary file not shown.
Binary file renamed [email protected][email protected]
Binary file not shown.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ EXCLUDE_COLD_LIBRARIES:=
IS_LIBRARY:=1
# TODO: CHANGE THIS!
LIBNAME:=EZ-Template
VERSION:=3.2.0-rc.1
VERSION:=3.2.0-rc.2
# EXCLUDE_SRC_FROM_LIB= $(SRCDIR)/unpublishedfile.c
# this line excludes opcontrol.c and similar files
EXCLUDE_SRC_FROM_LIB+=$(foreach file, $(SRCDIR)/autons $(SRCDIR)/main,$(foreach cext,$(CEXTS),$(file).$(cext)) $(foreach cxxext,$(CXXEXTS),$(file).$(cxxext)))
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0-rc.1
3.2.0-rc.2

0 comments on commit 07a6079

Please sign in to comment.