Skip to content

Latest commit

 

History

History
67 lines (57 loc) · 3.57 KB

File metadata and controls

67 lines (57 loc) · 3.57 KB
title Developer Notes
layout page

General Resources

Annual Updates

Miscellaneous

  • Shuffleboard
    • workaround for error can not find vbs script file while starting DriverStation
      • In DriverStation set "Dashboard Type" drop down menu to Shuffleboard
      • Open text editor for C:\Users\Public\Documents\FRC\FRC DS Data Storage.ini
      • Change the DashboardCmdLine to match the following:
    DashboardCmdLine = "wscript "C:\\Users\\Public\\frc2019\\tools\\SmartDashboard.vbs""
  • Gradle
    • How to configure build.gradle to show unchecked warnings and deprecations. Add the following to build.gradle:

      compileJava {
          options.encoding = 'UTF-8'
          options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
      }
      
      compileTestJava {
          options.encoding = 'UTF-8'
          options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
      }
      
  • Checkstyle

Coding Standards

Contributing to WPILib

Tiny Little Details