Team-OKC-Robotics / FRC-2022-CPP

a c++ port of our FRC-2022 code as training in C++
Other
0 stars 2 forks source link

Begins to port drivetrain code #2

Closed jkleiber closed 1 year ago

jkleiber commented 1 year ago

This establishes the framework I think we should use for the project. It does it using a drivetrain specific example.

I still need to go through and implement all the drivetrain functions, but this should be a good start of something to build on when working on the intake @danielbrownmsm

danielbrownmsm commented 1 year ago

so is our house style going to be

void func()
{
  //code
}

instead of

void func() {
    //code
}

?

jkleiber commented 1 year ago

so is our house style going to be

void func()
{
  //code
}

instead of

void func() {
    //code
}

?

This can be our style, it's just what I have set up in the clang-format file for now