HAND FIX - Fixup pregen files

This commit is contained in:
PJ Reiniger
2025-11-07 19:56:21 -05:00
committed by Peter Johnson
parent 6b69aab44e
commit e0320a942a
27 changed files with 67 additions and 65 deletions

View File

@@ -6,7 +6,7 @@
{% macro capitalize_first(string) -%}
{{ string[0]|capitalize + string[1:] }}
{%- endmacro %}
#include "frc/{{ ConsoleName }}Controller.h"
#include "wpi/driverstation/{{ ConsoleName }}Controller.hpp"
#include "wpi/hal/UsageReporting.h"
#include "wpi/util/sendable/SendableBuilder.hpp"

View File

@@ -4,7 +4,7 @@
// THIS FILE WAS AUTO-GENERATED BY ./wpilibc/generate_pwm_motor_controllers.py. DO NOT MODIFY
#include "frc/motorcontrol/{{ name }}.h"
#include "wpi/hardware/motor/{{ name }}.hpp"
#include "wpi/hal/UsageReporting.h"

View File

@@ -6,9 +6,9 @@
{% macro capitalize_first(string) -%}
{{ string[0]|capitalize + string[1:] }}
{%- endmacro %}
#include "frc/simulation/{{ ConsoleName }}ControllerSim.h"
#include "wpi/simulation/{{ ConsoleName }}ControllerSim.hpp"
#include "frc/{{ ConsoleName }}Controller.h"
#include "wpi/driverstation/{{ ConsoleName }}Controller.hpp"
using namespace frc;
using namespace frc::sim;