KevinOConnor / can2040

Software CAN bus implementation for rp2040 micro-controllers
GNU General Public License v3.0
686 stars 68 forks source link

Support v2.0.0 of the pico-sdk #57

Closed KevinOConnor closed 1 month ago

KevinOConnor commented 1 month ago

Replace 'struct pio_sm_hw' with 'pio_sm_hw_t' so that the code can be compiled with the v2.0.0 release of the pico-sdk. The 'pio_sm_hw_t' was introduced in sdk version 1.3.0, so that is now the minimum required version of the sdk.

As referenced in #54, #55, and #56.

-Kevin