Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix code blocks without language identified #2826

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public final class BuildConstants {

These files are regenerated every time code is built or deployed, so it isn't necessary to track them with Git. The aptly named [.gitignore](https://git-scm.com/docs/gitignore) file tells Git not to track any listed files and should exist by default in any project generated by the WPILib VS Code extension. Below is the line you should add to ``.gitignore`` to ignore the generated file:

```
```text
src/main/java/frc/robot/BuildConstants.java
```

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In an effort to provide both Teams and Volunteers (:term:`FTA` / :term:`CSA` / e

## Joystick Unplugged

```
```text
ERROR<Code>-44009 occurred at Driver Station
<time>2/5/2013 4:43:54 PM <unique#>1
FRC: A joystick was disconnected while the robot was enabled.
Expand All @@ -16,7 +16,7 @@ This error is triggered when a Joystick is unplugged. Contrary to the message te

## Lost Communication

```
```text
Warning<Code>44004 occurred at Driver Station
<time>2/6/2013 11:07:53 AM<unique#>2
FRC: The Driver Station has lost communication with the robot.
Expand All @@ -26,7 +26,7 @@ This Warning message is printed whenever the Driver Station loses communication

## Ping Status

```
```text
Warning<Code>44002 occurred at Ping Results: link-GOOD, DS radio(.4)-bad, robot radio(.1)-GOOD, cRIO(.2)-bad, FMS- bad Driver Station
<time>2/6/2013 11:07:59 AM<unique#>5
FRC: Driver Station ping status has changed.
Expand All @@ -36,7 +36,7 @@ A Ping Status warning is generated each time the Ping Status to a device changes

## Time Since Robot Boot

```
```text
WARNING<Code>44007 occurred at FRC_NetworkCommunications
**<secondsSinceReboot> 3.585**
FRC: Time since robot boot.
Expand All @@ -46,7 +46,7 @@ This message is printed each time the DS begins communicating with the roboRIO.

## Radio Detection Times

```
```text
WARNING<Code>44008 occurred at FRC_NetworkCommunications
<radioLostEvents> 19.004<radioSeenEvents> 0.000
FRC: Robot radio dectection times
Expand All @@ -59,7 +59,7 @@ This message may be printed when the DS begins communicating with the roboRIO an

## No Robot Code

```
```text
Warning<Code>44003 occurred at Driver Station
<time>2/8/2013 9:50:13 AM<unique#>8
FRC: No robot code is currently running.
Expand Down