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

Cypress: PWM FPGA test wrong assert #11769

Closed
yarbcy opened this issue Oct 29, 2019 · 9 comments
Closed

Cypress: PWM FPGA test wrong assert #11769

yarbcy opened this issue Oct 29, 2019 · 9 comments

Comments

@yarbcy
Copy link
Contributor

yarbcy commented Oct 29, 2019

Description of defect

Cypress: PWM FPGA test wrong assert

In file mbed_hal_fpga_ci_test_shield/pwm/main.c line 146 expected value is 10 ms actual (measured) is 10 ms. But log file shows: "1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...:146::FAIL: Expected 0.100000 Was 10.000000"

I run test case "Case("PWM - period: 10 ms, fill: 10%, api: period/write", one_peripheral<PWMPort, DefaultFormFactor, pwm_period_fill_test<10, 10, PERIOD_WRITE> >),"

Target(s) affected by this defect ?

Tested on CY8CKIT_062_WIFI_BT

Toolchain(s) (name and version) displaying this defect ?

Tested on GCC_ARM

What version of Mbed-os are you using (tag or sha) ?

Latest

What version(s) of tools are you using. List all that apply (E.g. mbed-cli)

N/A

How is this defect reproduced ?

Always

@ciarmcom
Copy link
Member

Internal Jira reference: https://jira.arm.com/browse/MBOTRIAGE-2294

@yarbcy
Copy link
Contributor Author

yarbcy commented Oct 30, 2019

@0xc0170 Could you please take a look?

@mprse
Copy link
Contributor

mprse commented Oct 30, 2019

peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...:146::FAIL: Expected 0.100000 Was 10.000000"

According to the requirements:

mbed-os/hal/pwmout_api.h

Lines 42 to 43 in 419556b

* * ::pwmout_write sets the output duty-cycle in range <0.0f, 1.0f>
* * ::pwmout_read returns the current float-point output duty-cycle in range <0.0f, 1.0f>

In the test we are setting output duty-cycle to 10% (0.1). Test fails because pwmout_read(&pwm_out) returned 10.0 instead of 0.1.

Looks like everything is ok, but the pwmout_read() returns the result in the wrong format. The result is represented as a decimal percentage value 10 [%] and we expect 0.1 float value.

float pwmout_read(pwmout_t *obj)
{
return 100.0f * obj->width_us / obj->period_us;
}

return 100.0f * obj->width_us / obj->period_us; should be changed to:
return obj->width_us / obj->period_us;

@yarbcy
Copy link
Contributor Author

yarbcy commented Oct 30, 2019

@mprse are you going to fix it ?

@mprse
Copy link
Contributor

mprse commented Oct 30, 2019

I can create a PR, but I don't have a Cypress board to test the fix.

@yarbcy
Copy link
Contributor Author

yarbcy commented Oct 30, 2019

@mprse I can test it on Cypress board.

mprse added a commit to mprse/mbed-os that referenced this issue Oct 30, 2019
Implementation of pwmout_read() is not consistent with the requirements.
This function should return the current float-point output duty-cycle in range <0.0f, 1.0f>.
Currently it returns decimal percentage value.
@mprse
Copy link
Contributor

mprse commented Oct 30, 2019

The fix can be found here: PR #11776.

@yarbcy
Copy link
Contributor Author

yarbcy commented Oct 31, 2019

@mprse Looks good all PWM test PASSED on CY8CKIT_062_WIFI_BT.

@yarbcy
Copy link
Contributor Author

yarbcy commented Oct 31, 2019

[HTST][INF] host test detected: default_auto
[1572537901.11][CONN][INF] found KV pair in stream: {{__testcase_count;37}}, queued...
[1572537901.13][CONN][RXD] >>> Running 37 test cases...
[1572537901.17][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - init/free test}}, queued...
[1572537901.24][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period/write}}, queued...
[1572537901.33][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period_ms/write}}, queued...
[1572537901.40][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period_us/write}}, queued...
[1572537901.49][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period/pulse_width}}, queued...
[1572537901.57][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_ms}}, queued...
[1572537901.65][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_us}}, queued...
[1572537901.73][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period/write}}, queued...
[1572537901.80][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period_ms/write}}, queued...
[1572537901.87][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period_us/write}}, queued...
[1572537901.96][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period/pulse_width}}, queued...
[1572537902.04][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_ms}}, queued...
[1572537902.13][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_us}}, queued...
[1572537902.20][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period/write}}, queued...
[1572537902.27][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period_ms/write}}, queued...
[1572537902.35][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period_us/write}}, queued...
[1572537902.43][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period/pulse_width}}, queued...
[1572537902.52][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_ms}}, queued...
[1572537902.59][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_us}}, queued...
[1572537902.66][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period/write}}, queued...
[1572537902.75][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period_ms/write}}, queued...
[1572537902.82][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period_us/write}}, queued...
[1572537902.90][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period/pulse_width}}, queued...
[1572537902.98][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_ms}}, queued...
[1572537903.07][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_us}}, queued...
[1572537903.14][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period/write}}, queued...
[1572537903.22][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period_ms/write}}, queued...
[1572537903.29][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period_us/write}}, queued...
[1572537903.38][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period/pulse_width}}, queued...
[1572537903.46][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_ms}}, queued...
[1572537903.55][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_us}}, queued...
[1572537903.62][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period/write}}, queued...
[1572537903.69][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period_ms/write}}, queued...
[1572537903.77][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period_us/write}}, queued...
[1572537903.85][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period/pulse_width}}, queued...
[1572537903.93][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_ms}}, queued...
[1572537904.02][CONN][RXD]
[1572537904.02][CONN][INF] found KV pair in stream: {{__testcase_name;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_us}}, queued...
[1572537904.06][CONN][RXD] >>> Running case #1: 'PWM - init/free test'...
[1572537904.11][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - init/free test}}, queued...
[1572537904.15][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537904.18][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537904.21][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537904.26][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537904.30][CONN][RXD] Testing PWM on all form factor ports
[1572537904.38][CONN][RXD] D2 - PWM_OUT pin tested on port: peripheral=(1077477381) PWM_OUT=(D2) ...succeeded
[1572537904.47][CONN][RXD] D3 - PWM_OUT pin tested on port: peripheral=(1077477381) PWM_OUT=(D3) ...succeeded
[1572537904.55][CONN][RXD] D4 - PWM_OUT pin tested on port: peripheral=(1077477382) PWM_OUT=(D4) ...succeeded
[1572537904.65][CONN][RXD] D5 - PWM_OUT pin tested on port: peripheral=(1077477382) PWM_OUT=(D5) ...succeeded
[1572537904.73][CONN][RXD] D6 - PWM_OUT pin tested on port: peripheral=(1077477383) PWM_OUT=(D6) ...succeeded
[1572537904.82][CONN][RXD] D7 - PWM_OUT pin tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537904.90][CONN][RXD] D8 - PWM_OUT pin tested on port: peripheral=(1077477384) PWM_OUT=(D8) ...succeeded
[1572537904.99][CONN][RXD] D9 - PWM_OUT pin tested on port: peripheral=(1077477384) PWM_OUT=(D9) ...succeeded
[1572537905.09][CONN][RXD] D10 - PWM_OUT pin tested on port: peripheral=(1077477381) PWM_OUT=(D10) ...succeeded
[1572537905.17][CONN][RXD] D11 - PWM_OUT pin tested on port: peripheral=(1077477380) PWM_OUT=(D11) ...succeeded
[1572537905.26][CONN][RXD] D12 - PWM_OUT pin tested on port: peripheral=(1077477380) PWM_OUT=(D12) ...succeeded
[1572537905.35][CONN][RXD] D13 - PWM_OUT pin tested on port: peripheral=(1077477381) PWM_OUT=(D13) ...succeeded
[1572537905.43][CONN][RXD] D14 - PWM_OUT pin tested on port: peripheral=(1077477384) PWM_OUT=(D14) ...succeeded
[1572537905.52][CONN][RXD] D15 - PWM_OUT pin tested on port: peripheral=(1077477384) PWM_OUT=(D15) ...succeeded
[1572537905.61][CONN][RXD] A0 - PWM_OUT pin tested on port: peripheral=(1077477398) PWM_OUT=(A0) ...succeeded
[1572537905.70][CONN][RXD] A1 - PWM_OUT pin tested on port: peripheral=(1077477398) PWM_OUT=(A1) ...succeeded
[1572537905.78][CONN][RXD] A2 - PWM_OUT pin tested on port: peripheral=(1077477399) PWM_OUT=(A2) ...succeeded
[1572537905.87][CONN][RXD] A3 - PWM_OUT pin tested on port: peripheral=(1077477399) PWM_OUT=(A3) ...succeeded
[1572537905.96][CONN][RXD] A4 - PWM_OUT pin tested on port: peripheral=(1077477376) PWM_OUT=(A4) ...succeeded
[1572537906.05][CONN][RXD] A5 - PWM_OUT pin tested on port: peripheral=(1077477376) PWM_OUT=(A5) ...succeeded
[1572537906.09][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - init/free test;1;0}}, queued...
[1572537906.15][CONN][RXD] >>> 'PWM - init/free test': 1 passed, 0 failed
[1572537906.15][CONN][RXD]
[1572537906.23][CONN][RXD] >>> Running case #2: 'PWM - period: 10 ms, fill: 10%, api: period/write'...
[1572537906.30][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period/write}}, queued...
[1572537906.34][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537906.37][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537906.41][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537906.44][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537906.48][CONN][RXD] Testing one PWM pin configuration
[1572537906.58][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537906.65][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period/write;1;0}}, queued...
[1572537906.73][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period/write': 1 passed, 0 failed
[1572537906.73][CONN][RXD]
[1572537906.82][CONN][RXD] >>> Running case #3: 'PWM - period: 10 ms, fill: 10%, api: period_ms/write'...
[1572537906.90][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period_ms/write}}, queued...
[1572537906.93][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537906.97][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537907.00][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537907.03][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537907.08][CONN][RXD] Testing one PWM pin configuration
[1572537907.17][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537907.26][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period_ms/write;1;0}}, queued...
[1572537907.34][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period_ms/write': 1 passed, 0 failed
[1572537907.34][CONN][RXD]
[1572537907.42][CONN][RXD] >>> Running case #4: 'PWM - period: 10 ms, fill: 10%, api: period_us/write'...
[1572537907.50][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period_us/write}}, queued...
[1572537907.53][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537907.57][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537907.60][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537907.63][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537907.68][CONN][RXD] Testing one PWM pin configuration
[1572537907.77][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537907.86][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period_us/write;1;0}}, queued...
[1572537907.94][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period_us/write': 1 passed, 0 failed
[1572537907.94][CONN][RXD]
[1572537908.03][CONN][RXD] >>> Running case #5: 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width'...
[1572537908.10][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period/pulse_width}}, queued...
[1572537908.14][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537908.18][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537908.21][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537908.25][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537908.29][CONN][RXD] Testing one PWM pin configuration
[1572537908.39][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537908.47][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period/pulse_width;1;0}}, queued...
[1572537908.55][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width': 1 passed, 0 failed
[1572537908.55][CONN][RXD]
[1572537908.64][CONN][RXD] >>> Running case #6: 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width_ms'...
[1572537908.73][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_ms}}, queued...
[1572537908.77][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537908.80][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537908.83][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537908.86][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537908.91][CONN][RXD] Testing one PWM pin configuration
[1572537909.00][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537909.09][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_ms;1;0}}, queued...
[1572537909.19][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537909.19][CONN][RXD]
[1572537909.27][CONN][RXD] >>> Running case #7: 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width_us'...
[1572537909.36][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_us}}, queued...
[1572537909.39][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537909.42][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537909.46][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537909.49][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537909.54][CONN][RXD] Testing one PWM pin configuration
[1572537909.63][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537909.72][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 10%, api: period/pulse_width_us;1;0}}, queued...
[1572537909.81][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 10%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537909.81][CONN][RXD]
[1572537909.89][CONN][RXD] >>> Running case #8: 'PWM - period: 10 ms, fill: 50%, api: period/write'...
[1572537909.96][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period/write}}, queued...
[1572537910.00][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537910.03][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537910.07][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537910.11][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537910.14][CONN][RXD] Testing one PWM pin configuration
[1572537910.24][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537910.32][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period/write;1;0}}, queued...
[1572537910.39][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period/write': 1 passed, 0 failed
[1572537910.39][CONN][RXD]
[1572537910.48][CONN][RXD] >>> Running case #9: 'PWM - period: 10 ms, fill: 50%, api: period_ms/write'...
[1572537910.56][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period_ms/write}}, queued...
[1572537910.59][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537910.63][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537910.66][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537910.70][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537910.74][CONN][RXD] Testing one PWM pin configuration
[1572537910.83][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537910.92][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period_ms/write;1;0}}, queued...
[1572537911.00][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period_ms/write': 1 passed, 0 failed
[1572537911.00][CONN][RXD]
[1572537911.09][CONN][RXD] >>> Running case #10: 'PWM - period: 10 ms, fill: 50%, api: period_us/write'...
[1572537911.16][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period_us/write}}, queued...
[1572537911.19][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537911.23][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537911.27][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537911.31][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537911.34][CONN][RXD] Testing one PWM pin configuration
[1572537911.43][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537911.52][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period_us/write;1;0}}, queued...
[1572537911.60][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period_us/write': 1 passed, 0 failed
[1572537911.60][CONN][RXD]
[1572537911.69][CONN][RXD] >>> Running case #11: 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width'...
[1572537911.77][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period/pulse_width}}, queued...
[1572537911.81][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537911.84][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537911.88][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537911.91][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537911.95][CONN][RXD] Testing one PWM pin configuration
[1572537912.05][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537912.13][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period/pulse_width;1;0}}, queued...
[1572537912.22][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width': 1 passed, 0 failed
[1572537912.22][CONN][RXD]
[1572537912.31][CONN][RXD] >>> Running case #12: 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width_ms'...
[1572537912.40][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_ms}}, queued...
[1572537912.43][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537912.46][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537912.49][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537912.54][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537912.57][CONN][RXD] Testing one PWM pin configuration
[1572537912.67][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537912.76][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_ms;1;0}}, queued...
[1572537912.84][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537912.84][CONN][RXD]
[1572537912.94][CONN][RXD] >>> Running case #13: 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width_us'...
[1572537913.02][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_us}}, queued...
[1572537913.06][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537913.09][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537913.13][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537913.16][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537913.20][CONN][RXD] Testing one PWM pin configuration
[1572537913.30][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537913.38][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 50%, api: period/pulse_width_us;1;0}}, queued...
[1572537913.47][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 50%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537913.48][CONN][RXD]
[1572537913.55][CONN][RXD] >>> Running case #14: 'PWM - period: 10 ms, fill: 90%, api: period/write'...
[1572537913.63][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period/write}}, queued...
[1572537913.66][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537913.70][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537913.74][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537913.77][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537913.81][CONN][RXD] Testing one PWM pin configuration
[1572537913.90][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537913.99][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period/write;1;0}}, queued...
[1572537914.06][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period/write': 1 passed, 0 failed
[1572537914.06][CONN][RXD]
[1572537914.15][CONN][RXD] >>> Running case #15: 'PWM - period: 10 ms, fill: 90%, api: period_ms/write'...
[1572537914.23][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period_ms/write}}, queued...
[1572537914.26][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537914.30][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537914.34][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537914.37][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537914.41][CONN][RXD] Testing one PWM pin configuration
[1572537914.50][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537914.58][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period_ms/write;1;0}}, queued...
[1572537914.66][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period_ms/write': 1 passed, 0 failed
[1572537914.66][CONN][RXD]
[1572537914.76][CONN][RXD] >>> Running case #16: 'PWM - period: 10 ms, fill: 90%, api: period_us/write'...
[1572537914.83][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period_us/write}}, queued...
[1572537914.86][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537914.91][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537914.94][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537914.97][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537915.01][CONN][RXD] Testing one PWM pin configuration
[1572537915.10][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537915.19][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period_us/write;1;0}}, queued...
[1572537915.27][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period_us/write': 1 passed, 0 failed
[1572537915.27][CONN][RXD]
[1572537915.36][CONN][RXD] >>> Running case #17: 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width'...
[1572537915.44][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period/pulse_width}}, queued...
[1572537915.47][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537915.51][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537915.55][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537915.58][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537915.62][CONN][RXD] Testing one PWM pin configuration
[1572537915.72][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537915.80][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period/pulse_width;1;0}}, queued...
[1572537915.89][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width': 1 passed, 0 failed
[1572537915.89][CONN][RXD]
[1572537915.98][CONN][RXD] >>> Running case #18: 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width_ms'...
[1572537916.07][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_ms}}, queued...
[1572537916.10][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537916.13][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537916.17][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537916.20][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537916.25][CONN][RXD] Testing one PWM pin configuration
[1572537916.34][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537916.43][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_ms;1;0}}, queued...
[1572537916.52][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537916.52][CONN][RXD]
[1572537916.61][CONN][RXD] >>> Running case #19: 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width_us'...
[1572537916.69][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_us}}, queued...
[1572537916.72][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537916.77][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537916.80][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537916.83][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537916.87][CONN][RXD] Testing one PWM pin configuration
[1572537916.97][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537917.05][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 10 ms, fill: 90%, api: period/pulse_width_us;1;0}}, queued...
[1572537917.15][CONN][RXD] >>> 'PWM - period: 10 ms, fill: 90%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537917.15][CONN][RXD]
[1572537917.22][CONN][RXD] >>> Running case #20: 'PWM - period: 50 ms, fill: 10%, api: period/write'...
[1572537917.30][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period/write}}, queued...
[1572537917.34][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537917.37][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537917.40][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537917.45][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537917.49][CONN][RXD] Testing one PWM pin configuration
[1572537918.01][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537918.08][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period/write;1;0}}, queued...
[1572537918.16][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period/write': 1 passed, 0 failed
[1572537918.17][CONN][RXD]
[1572537918.24][CONN][RXD] >>> Running case #21: 'PWM - period: 50 ms, fill: 10%, api: period_ms/write'...
[1572537918.33][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period_ms/write}}, queued...
[1572537918.36][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537918.40][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537918.43][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537918.46][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537918.50][CONN][RXD] Testing one PWM pin configuration
[1572537919.03][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537919.11][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period_ms/write;1;0}}, queued...
[1572537919.19][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period_ms/write': 1 passed, 0 failed
[1572537919.19][CONN][RXD]
[1572537919.28][CONN][RXD] >>> Running case #22: 'PWM - period: 50 ms, fill: 10%, api: period_us/write'...
[1572537919.35][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period_us/write}}, queued...
[1572537919.39][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537919.43][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537919.46][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537919.50][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537919.53][CONN][RXD] Testing one PWM pin configuration
[1572537920.06][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537920.14][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period_us/write;1;0}}, queued...
[1572537920.23][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period_us/write': 1 passed, 0 failed
[1572537920.23][CONN][RXD]
[1572537920.31][CONN][RXD] >>> Running case #23: 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width'...
[1572537920.40][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period/pulse_width}}, queued...
[1572537920.43][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537920.46][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537920.50][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537920.53][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537920.57][CONN][RXD] Testing one PWM pin configuration
[1572537921.10][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537921.18][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period/pulse_width;1;0}}, queued...
[1572537921.27][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width': 1 passed, 0 failed
[1572537921.27][CONN][RXD]
[1572537921.35][CONN][RXD] >>> Running case #24: 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width_ms'...
[1572537921.44][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_ms}}, queued...
[1572537921.47][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537921.51][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537921.55][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537921.58][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537921.62][CONN][RXD] Testing one PWM pin configuration
[1572537922.14][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537922.23][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_ms;1;0}}, queued...
[1572537922.33][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537922.33][CONN][RXD]
[1572537922.41][CONN][RXD] >>> Running case #25: 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width_us'...
[1572537922.50][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_us}}, queued...
[1572537922.53][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537922.57][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537922.60][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537922.64][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537922.67][CONN][RXD] Testing one PWM pin configuration
[1572537923.20][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537923.29][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 10%, api: period/pulse_width_us;1;0}}, queued...
[1572537923.37][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 10%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537923.37][CONN][RXD]
[1572537923.46][CONN][RXD] >>> Running case #26: 'PWM - period: 50 ms, fill: 50%, api: period/write'...
[1572537923.53][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period/write}}, queued...
[1572537923.57][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537923.61][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537923.64][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537923.67][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537923.71][CONN][RXD] Testing one PWM pin configuration
[1572537924.23][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537924.32][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period/write;1;0}}, queued...
[1572537924.39][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period/write': 1 passed, 0 failed
[1572537924.39][CONN][RXD]
[1572537924.48][CONN][RXD] >>> Running case #27: 'PWM - period: 50 ms, fill: 50%, api: period_ms/write'...
[1572537924.56][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period_ms/write}}, queued...
[1572537924.59][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537924.62][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537924.67][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537924.70][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537924.74][CONN][RXD] Testing one PWM pin configuration
[1572537925.26][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537925.35][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period_ms/write;1;0}}, queued...
[1572537925.42][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period_ms/write': 1 passed, 0 failed
[1572537925.42][CONN][RXD]
[1572537925.51][CONN][RXD] >>> Running case #28: 'PWM - period: 50 ms, fill: 50%, api: period_us/write'...
[1572537925.59][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period_us/write}}, queued...
[1572537925.62][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537925.65][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537925.70][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537925.73][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537925.77][CONN][RXD] Testing one PWM pin configuration
[1572537926.29][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537926.38][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period_us/write;1;0}}, queued...
[1572537926.45][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period_us/write': 1 passed, 0 failed
[1572537926.46][CONN][RXD]
[1572537926.55][CONN][RXD] >>> Running case #29: 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width'...
[1572537926.62][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period/pulse_width}}, queued...
[1572537926.66][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537926.69][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537926.73][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537926.76][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537926.80][CONN][RXD] Testing one PWM pin configuration
[1572537927.32][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537927.41][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period/pulse_width;1;0}}, queued...
[1572537927.49][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width': 1 passed, 0 failed
[1572537927.50][CONN][RXD]
[1572537927.59][CONN][RXD] >>> Running case #30: 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width_ms'...
[1572537927.68][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_ms}}, queued...
[1572537927.71][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537927.74][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537927.78][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537927.81][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537927.86][CONN][RXD] Testing one PWM pin configuration
[1572537928.38][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537928.46][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_ms;1;0}}, queued...
[1572537928.56][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537928.56][CONN][RXD]
[1572537928.64][CONN][RXD] >>> Running case #31: 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width_us'...
[1572537928.73][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_us}}, queued...
[1572537928.76][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537928.80][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537928.83][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537928.87][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537928.91][CONN][RXD] Testing one PWM pin configuration
[1572537929.43][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537929.52][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 50%, api: period/pulse_width_us;1;0}}, queued...
[1572537929.61][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 50%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537929.61][CONN][RXD]
[1572537929.70][CONN][RXD] >>> Running case #32: 'PWM - period: 50 ms, fill: 90%, api: period/write'...
[1572537929.77][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period/write}}, queued...
[1572537929.80][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537929.83][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537929.87][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537929.90][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537929.95][CONN][RXD] Testing one PWM pin configuration
[1572537930.47][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537930.55][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period/write;1;0}}, queued...
[1572537930.63][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period/write': 1 passed, 0 failed
[1572537930.63][CONN][RXD]
[1572537930.71][CONN][RXD] >>> Running case #33: 'PWM - period: 50 ms, fill: 90%, api: period_ms/write'...
[1572537930.79][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period_ms/write}}, queued...
[1572537930.82][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537930.86][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537930.90][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537930.93][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537930.97][CONN][RXD] Testing one PWM pin configuration
[1572537931.49][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537931.58][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period_ms/write;1;0}}, queued...
[1572537931.66][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period_ms/write': 1 passed, 0 failed
[1572537931.66][CONN][RXD]
[1572537931.75][CONN][RXD] >>> Running case #34: 'PWM - period: 50 ms, fill: 90%, api: period_us/write'...
[1572537931.82][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period_us/write}}, queued...
[1572537931.85][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537931.89][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537931.93][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537931.96][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537932.00][CONN][RXD] Testing one PWM pin configuration
[1572537932.52][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537932.61][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period_us/write;1;0}}, queued...
[1572537932.68][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period_us/write': 1 passed, 0 failed
[1572537932.68][CONN][RXD]
[1572537932.78][CONN][RXD] >>> Running case #35: 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width'...
[1572537932.85][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period/pulse_width}}, queued...
[1572537932.89][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537932.93][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537932.96][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537933.00][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537933.04][CONN][RXD] Testing one PWM pin configuration
[1572537933.56][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537933.64][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period/pulse_width;1;0}}, queued...
[1572537933.73][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width': 1 passed, 0 failed
[1572537933.74][CONN][RXD]
[1572537933.82][CONN][RXD] >>> Running case #36: 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width_ms'...
[1572537933.91][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_ms}}, queued...
[1572537933.94][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537933.98][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537934.01][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537934.04][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537934.09][CONN][RXD] Testing one PWM pin configuration
[1572537934.61][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537934.69][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_ms;1;0}}, queued...
[1572537934.79][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width_ms': 1 passed, 0 failed
[1572537934.79][CONN][RXD]
[1572537934.87][CONN][RXD] >>> Running case #37: 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width_us'...
[1572537934.96][CONN][INF] found KV pair in stream: {{__testcase_start;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_us}}, queued...
[1572537934.99][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537935.03][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537935.07][CONN][RXD] Skipping PWM_OUT pin D0 (327680)
[1572537935.10][CONN][RXD] Skipping PWM_OUT pin D1 (327681)
[1572537935.14][CONN][RXD] Testing one PWM pin configuration
[1572537935.66][CONN][RXD] 1077477377 - peripheral tested on port: peripheral=(1077477377) PWM_OUT=(D7) ...succeeded
[1572537935.75][CONN][INF] found KV pair in stream: {{__testcase_finish;PWM - period: 50 ms, fill: 90%, api: period/pulse_width_us;1;0}}, queued...
[1572537935.84][CONN][RXD] >>> 'PWM - period: 50 ms, fill: 90%, api: period/pulse_width_us': 1 passed, 0 failed
[1572537935.85][CONN][RXD]
[1572537935.88][CONN][RXD] >>> Test cases: 37 passed, 0 failed

0xc0170 added a commit that referenced this issue Oct 31, 2019
Fix for issue #11769 (Cypress: PWM FPGA test wrong assert)
@yarbcy yarbcy closed this as completed Nov 13, 2019
maciejbocianski pushed a commit to maciejbocianski/mbed-os that referenced this issue Nov 14, 2019
Implementation of pwmout_read() is not consistent with the requirements.
This function should return the current float-point output duty-cycle in range <0.0f, 1.0f>.
Currently it returns decimal percentage value.
adbridge pushed a commit that referenced this issue Nov 19, 2019
Implementation of pwmout_read() is not consistent with the requirements.
This function should return the current float-point output duty-cycle in range <0.0f, 1.0f>.
Currently it returns decimal percentage value.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants