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

Correctly include EventQueue.h #9801

Merged
merged 1 commit into from Mar 17, 2019
Merged

Correctly include EventQueue.h #9801

merged 1 commit into from Mar 17, 2019

Commits on Feb 21, 2019

  1. Correctly include EventQueue.h

    There are two EventQueue.h in mbed-os codebase:
    events/EventQueue.h
    features/FEATURE_BLE/ble/pal/EventQueue.h
    
    By accident, `mbed compile` generates includes.txt with the correct
    order of include search paths. This is not the case for the CMake
    exporter: targets with FEATURE_BLE enables fail to compile with errors:
    
    mbed-os/features/cellular/framework/AT/ATHandler.h:99:60: error:
    'events' has not been declared
    
    Update all places to always include either "events/EventQueue.h"
    or "ble/pal/EventQueue.h": to always find the correct header.
    vmedcy committed Feb 21, 2019
    Copy the full SHA
    b0a3327 View commit details
    Browse the repository at this point in the history