You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i used your lib with TI CC1350 CC1310.
I couldn't compile because enum interrupts {...} was conflicting with core function void interrupts().
To avoid further conflicts may be it is better to rename enum interrupts to mpu_interrupts.
After following changes it worked for me:
// change in MPU9255.h:
// //interrupt pin settings
// enum interrupts {...}
// to
// enum mpu_interrupts {...}
//
// and in and MPU9255_Interrupts.cpp:
// enable_interrupt_output(interrupts selected_interrupt)
// disable_interrupt_output(interrupts selected_interrupt)
// to
// enable_interrupt_output(mpu_interrupts selected_interrupt)
// disable_interrupt_output(mpu_interrupts selected_interrupt)
The text was updated successfully, but these errors were encountered:
i used your lib with TI CC1350 CC1310.
I couldn't compile because enum interrupts {...} was conflicting with core function void interrupts().
To avoid further conflicts may be it is better to rename enum interrupts to mpu_interrupts.
After following changes it worked for me:
// change in MPU9255.h:
// //interrupt pin settings
// enum interrupts {...}
// to
// enum mpu_interrupts {...}
//
// and in and MPU9255_Interrupts.cpp:
// enable_interrupt_output(interrupts selected_interrupt)
// disable_interrupt_output(interrupts selected_interrupt)
// to
// enable_interrupt_output(mpu_interrupts selected_interrupt)
// disable_interrupt_output(mpu_interrupts selected_interrupt)
The text was updated successfully, but these errors were encountered: