1*cfb92d14SAndroid Build Coastguard Worker /*
2*cfb92d14SAndroid Build Coastguard Worker * Copyright (c) 2022, The OpenThread Authors.
3*cfb92d14SAndroid Build Coastguard Worker * All rights reserved.
4*cfb92d14SAndroid Build Coastguard Worker *
5*cfb92d14SAndroid Build Coastguard Worker * Redistribution and use in source and binary forms, with or without
6*cfb92d14SAndroid Build Coastguard Worker * modification, are permitted provided that the following conditions are met:
7*cfb92d14SAndroid Build Coastguard Worker * 1. Redistributions of source code must retain the above copyright
8*cfb92d14SAndroid Build Coastguard Worker * notice, this list of conditions and the following disclaimer.
9*cfb92d14SAndroid Build Coastguard Worker * 2. Redistributions in binary form must reproduce the above copyright
10*cfb92d14SAndroid Build Coastguard Worker * notice, this list of conditions and the following disclaimer in the
11*cfb92d14SAndroid Build Coastguard Worker * documentation and/or other materials provided with the distribution.
12*cfb92d14SAndroid Build Coastguard Worker * 3. Neither the name of the copyright holder nor the
13*cfb92d14SAndroid Build Coastguard Worker * names of its contributors may be used to endorse or promote products
14*cfb92d14SAndroid Build Coastguard Worker * derived from this software without specific prior written permission.
15*cfb92d14SAndroid Build Coastguard Worker *
16*cfb92d14SAndroid Build Coastguard Worker * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17*cfb92d14SAndroid Build Coastguard Worker * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*cfb92d14SAndroid Build Coastguard Worker * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*cfb92d14SAndroid Build Coastguard Worker * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20*cfb92d14SAndroid Build Coastguard Worker * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*cfb92d14SAndroid Build Coastguard Worker * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*cfb92d14SAndroid Build Coastguard Worker * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*cfb92d14SAndroid Build Coastguard Worker * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*cfb92d14SAndroid Build Coastguard Worker * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*cfb92d14SAndroid Build Coastguard Worker * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*cfb92d14SAndroid Build Coastguard Worker * POSSIBILITY OF SUCH DAMAGE.
27*cfb92d14SAndroid Build Coastguard Worker */
28*cfb92d14SAndroid Build Coastguard Worker
29*cfb92d14SAndroid Build Coastguard Worker #include <openthread/platform/radio.h>
30*cfb92d14SAndroid Build Coastguard Worker
31*cfb92d14SAndroid Build Coastguard Worker #include "test_platform.h"
32*cfb92d14SAndroid Build Coastguard Worker #include "test_util.h"
33*cfb92d14SAndroid Build Coastguard Worker
34*cfb92d14SAndroid Build Coastguard Worker #if OPENTHREAD_CONFIG_POWER_CALIBRATION_ENABLE && OPENTHREAD_CONFIG_PLATFORM_POWER_CALIBRATION_ENABLE
35*cfb92d14SAndroid Build Coastguard Worker
36*cfb92d14SAndroid Build Coastguard Worker namespace ot {
37*cfb92d14SAndroid Build Coastguard Worker
TestPowerCalibration(void)38*cfb92d14SAndroid Build Coastguard Worker void TestPowerCalibration(void)
39*cfb92d14SAndroid Build Coastguard Worker {
40*cfb92d14SAndroid Build Coastguard Worker otInstance *instance;
41*cfb92d14SAndroid Build Coastguard Worker uint8_t rawPowerSetting[2];
42*cfb92d14SAndroid Build Coastguard Worker uint16_t rawPowerSettingLength;
43*cfb92d14SAndroid Build Coastguard Worker
44*cfb92d14SAndroid Build Coastguard Worker struct CalibratedPowerEntry
45*cfb92d14SAndroid Build Coastguard Worker {
46*cfb92d14SAndroid Build Coastguard Worker uint8_t mChannel;
47*cfb92d14SAndroid Build Coastguard Worker int16_t mActualPower;
48*cfb92d14SAndroid Build Coastguard Worker uint8_t mRawPowerSetting[1];
49*cfb92d14SAndroid Build Coastguard Worker uint16_t mRawPowerSettingLength;
50*cfb92d14SAndroid Build Coastguard Worker };
51*cfb92d14SAndroid Build Coastguard Worker
52*cfb92d14SAndroid Build Coastguard Worker constexpr CalibratedPowerEntry kCalibratedPowerTable[] = {
53*cfb92d14SAndroid Build Coastguard Worker {11, 15000, {0x02}, 1},
54*cfb92d14SAndroid Build Coastguard Worker {11, 5000, {0x00}, 1},
55*cfb92d14SAndroid Build Coastguard Worker {11, 10000, {0x01}, 1},
56*cfb92d14SAndroid Build Coastguard Worker };
57*cfb92d14SAndroid Build Coastguard Worker
58*cfb92d14SAndroid Build Coastguard Worker instance = static_cast<otInstance *>(testInitInstance());
59*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(instance != nullptr, "Null OpenThread instance");
60*cfb92d14SAndroid Build Coastguard Worker
61*cfb92d14SAndroid Build Coastguard Worker for (const CalibratedPowerEntry &calibratedPower : kCalibratedPowerTable)
62*cfb92d14SAndroid Build Coastguard Worker {
63*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioAddCalibratedPower(instance, calibratedPower.mChannel, calibratedPower.mActualPower,
64*cfb92d14SAndroid Build Coastguard Worker calibratedPower.mRawPowerSetting,
65*cfb92d14SAndroid Build Coastguard Worker calibratedPower.mRawPowerSettingLength));
66*cfb92d14SAndroid Build Coastguard Worker }
67*cfb92d14SAndroid Build Coastguard Worker
68*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 4999));
69*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
70*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
71*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
72*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x00);
73*cfb92d14SAndroid Build Coastguard Worker
74*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 5000));
75*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
76*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
77*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
78*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x00);
79*cfb92d14SAndroid Build Coastguard Worker
80*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 9999));
81*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
82*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
83*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
84*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x00);
85*cfb92d14SAndroid Build Coastguard Worker
86*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 10000));
87*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
88*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
89*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
90*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x01);
91*cfb92d14SAndroid Build Coastguard Worker
92*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 14999));
93*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
94*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
95*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
96*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x01);
97*cfb92d14SAndroid Build Coastguard Worker
98*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 15000));
99*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
100*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
101*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
102*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x02);
103*cfb92d14SAndroid Build Coastguard Worker
104*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 15001));
105*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
106*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
107*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
108*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x02);
109*cfb92d14SAndroid Build Coastguard Worker
110*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
111*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(otPlatRadioGetRawPowerSetting(instance, 12, rawPowerSetting, &rawPowerSettingLength) ==
112*cfb92d14SAndroid Build Coastguard Worker OT_ERROR_NOT_FOUND);
113*cfb92d14SAndroid Build Coastguard Worker
114*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioClearCalibratedPowers(instance));
115*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
116*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength) ==
117*cfb92d14SAndroid Build Coastguard Worker OT_ERROR_NOT_FOUND);
118*cfb92d14SAndroid Build Coastguard Worker
119*cfb92d14SAndroid Build Coastguard Worker for (const CalibratedPowerEntry &calibratedPower : kCalibratedPowerTable)
120*cfb92d14SAndroid Build Coastguard Worker {
121*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioAddCalibratedPower(instance, calibratedPower.mChannel, calibratedPower.mActualPower,
122*cfb92d14SAndroid Build Coastguard Worker calibratedPower.mRawPowerSetting,
123*cfb92d14SAndroid Build Coastguard Worker calibratedPower.mRawPowerSettingLength));
124*cfb92d14SAndroid Build Coastguard Worker }
125*cfb92d14SAndroid Build Coastguard Worker
126*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioSetChannelTargetPower(instance, 11, 15000));
127*cfb92d14SAndroid Build Coastguard Worker rawPowerSettingLength = sizeof(rawPowerSetting);
128*cfb92d14SAndroid Build Coastguard Worker SuccessOrQuit(otPlatRadioGetRawPowerSetting(instance, 11, rawPowerSetting, &rawPowerSettingLength));
129*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSettingLength == 1);
130*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(rawPowerSetting[0] == 0x02);
131*cfb92d14SAndroid Build Coastguard Worker
132*cfb92d14SAndroid Build Coastguard Worker VerifyOrQuit(
133*cfb92d14SAndroid Build Coastguard Worker otPlatRadioAddCalibratedPower(instance, kCalibratedPowerTable[0].mChannel,
134*cfb92d14SAndroid Build Coastguard Worker kCalibratedPowerTable[0].mActualPower, kCalibratedPowerTable[0].mRawPowerSetting,
135*cfb92d14SAndroid Build Coastguard Worker kCalibratedPowerTable[0].mRawPowerSettingLength) == OT_ERROR_INVALID_ARGS);
136*cfb92d14SAndroid Build Coastguard Worker
137*cfb92d14SAndroid Build Coastguard Worker testFreeInstance(instance);
138*cfb92d14SAndroid Build Coastguard Worker }
139*cfb92d14SAndroid Build Coastguard Worker } // namespace ot
140*cfb92d14SAndroid Build Coastguard Worker
141*cfb92d14SAndroid Build Coastguard Worker #endif // OPENTHREAD_CONFIG_POWER_CALIBRATION_ENABLE && OPENTHREAD_CONFIG_PLATFORM_POWER_CALIBRATION_ENABLE
142*cfb92d14SAndroid Build Coastguard Worker
main(void)143*cfb92d14SAndroid Build Coastguard Worker int main(void)
144*cfb92d14SAndroid Build Coastguard Worker {
145*cfb92d14SAndroid Build Coastguard Worker #if OPENTHREAD_CONFIG_POWER_CALIBRATION_ENABLE && OPENTHREAD_CONFIG_PLATFORM_POWER_CALIBRATION_ENABLE
146*cfb92d14SAndroid Build Coastguard Worker ot::TestPowerCalibration();
147*cfb92d14SAndroid Build Coastguard Worker printf("All tests passed\n");
148*cfb92d14SAndroid Build Coastguard Worker #else
149*cfb92d14SAndroid Build Coastguard Worker printf("Power calibration is not enabled\n");
150*cfb92d14SAndroid Build Coastguard Worker #endif
151*cfb92d14SAndroid Build Coastguard Worker return 0;
152*cfb92d14SAndroid Build Coastguard Worker }
153