Update can_helper.h

#ifdef DEVICE_CAN || FEATURE_EXPERIMENTAL_API was incorrectly #if DEVICE_CAN || FEATURE_EXPERIMENTAL_API.

Defining FEATURE_EXPERIMENTAL_API would cause the build to fail
pull/15529/head
George Stephens 2024-11-13 20:59:15 +00:00 committed by GitHub
parent d723bf9e55
commit 4d90f089a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#ifndef MBED_CAN_HELPER_H
#define MBED_CAN_HELPER_H
#if DEVICE_CAN || FEATURE_EXPERIMENTAL_API
#ifdef DEVICE_CAN || FEATURE_EXPERIMENTAL_API
#ifdef __cplusplus
extern "C" {