mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
2b5a389de3
Add three new gems for UART serial communication: - hw-uart: common Ruby API, C bindings, ring buffer, and HAL header - hw-esp32-uart: ESP32 HAL using ESP-IDF UART driver with FreeRTOS RX task - hw-rp2040-uart: RP2040 HAL using Pico SDK with IRQ-driven RX Co-authored-by: Claude <noreply@anthropic.com>
6 lines
179 B
Ruby
6 lines
179 B
Ruby
MRuby::Gem::Specification.new('hw-uart') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.authors = ['HASUMI Hitoshi', 'mruby developers']
|
|
spec.summary = 'UART peripheral interface'
|
|
end
|