diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-06-18 23:46:20 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-06-18 23:46:20 -0400 |
| commit | 35b919185747c42e183ccfc41f99fd370acca450 (patch) | |
| tree | 5c1a383a99c53592c16daed8c61f84a4176d99f0 /shared-module/bleio/ScanEntry.h | |
| parent | 1356819de195810da09b5fc051ef5cc9dc21b2f4 (diff) | |
Don't operate directly on bleio objects in shared-bindings: use common_hal
routines instead. Changes made but not yet tested.
Diffstat (limited to 'shared-module/bleio/ScanEntry.h')
| -rw-r--r-- | shared-module/bleio/ScanEntry.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-module/bleio/ScanEntry.h b/shared-module/bleio/ScanEntry.h index 6ae7334a8..40e02f9fa 100644 --- a/shared-module/bleio/ScanEntry.h +++ b/shared-module/bleio/ScanEntry.h @@ -27,7 +27,8 @@ #ifndef MICROPY_INCLUDED_SHARED_MODULE_BLEIO_SCANENTRY_H #define MICROPY_INCLUDED_SHARED_MODULE_BLEIO_SCANENTRY_H -#include "shared-module/bleio/Address.h" +#include "py/obj.h" +#include "shared-bindings/bleio/Address.h" typedef struct { mp_obj_base_t base; |
