CppCheck Report

Statistics

Total issues found: 3

Issues by severity:

  • information: 2

  • style: 1

power_signal_processing.c

Location: components\power_signal_processing\src\power_signal_processing.c

Style: unusedFunction

The function ‘powerSignalProcessing’ is never used.

CWE: 561

13 *    :implements: SWDD_PSP-001, SWDD_PSP-002, SWDD_PSP-003
14 * ```
15 */
16void powerSignalProcessing(void)
17{
18    // Check if "P" key was pressed
19    if (RteGetPowerKeyPressedEvent())

platform_types.h

Location: platforms\platform_types.h

Information: missingIncludeSystem

Include file: <stdint.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.

1#ifndef platform_types_h_
2#define platform_types_h_
3
4#include <stdint.h>
5
6#ifndef NULL
7#ifndef __cplusplus