mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
I started with the output of styleguide#217, then renamed a few classes to fix compilation. ntcore's StorageTest needed some manual renaming since it put the Test word in the middle instead of at the end. One limitation of wpiformat is test cases that were only named "Test" were unmodified, and an error was generated. These test cases were manually given more descriptive names: * TimedRobotTest mode test cases had "Mode" appended to the name. Java tests were renamed to match. * UvAsyncTest and UvAsyncFunctionTest cases were given alternate names
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include <hal/HAL.h>
|
|
|
|
#include "CrossConnects.h"
|
|
#include "LifetimeWrappers.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace hlt;
|
|
|
|
class DutyCycleTest : public ::testing::TestWithParam<std::pair<int, int>> {};
|
|
|
|
TEST_P(DutyCycleTest, DutyCycle) {
|
|
auto param = GetParam();
|
|
|
|
int32_t status = 0;
|
|
PWMHandle pwmHandle(param.first, &status);
|
|
ASSERT_NE(pwmHandle, HAL_kInvalidHandle);
|
|
ASSERT_EQ(0, status);
|
|
|
|
// Ensure our PWM is disabled, and set up properly
|
|
HAL_SetPWMRaw(pwmHandle, 0, &status);
|
|
ASSERT_EQ(0, status);
|
|
HAL_SetPWMConfig(pwmHandle, 2.0, 1.0, 1.0, 0, 0, &status);
|
|
HAL_SetPWMConfig(pwmHandle, 5.05, 2.525, 2.525, 2.525, 0, &status);
|
|
ASSERT_EQ(0, status);
|
|
HAL_SetPWMPeriodScale(pwmHandle, 0, &status);
|
|
ASSERT_EQ(0, status);
|
|
|
|
DIOHandle dioHandle{param.second, true, &status};
|
|
ASSERT_EQ(0, status);
|
|
|
|
DutyCycleHandle dutyCycle{dioHandle, &status};
|
|
ASSERT_EQ(0, status);
|
|
|
|
HAL_SetPWMSpeed(pwmHandle, 0.5, &status);
|
|
ASSERT_EQ(0, status);
|
|
|
|
// Sleep enough time for the frequency to converge
|
|
usleep(3500000);
|
|
|
|
ASSERT_NEAR(1000 / 5.05,
|
|
(double)HAL_GetDutyCycleFrequency(dutyCycle, &status), 1);
|
|
|
|
// TODO measure output
|
|
}
|
|
|
|
INSTANTIATE_TEST_SUITE_P(DutyCycleCrossConnTests, DutyCycleTest,
|
|
::testing::ValuesIn(PWMCrossConnects));
|