3 مستودعات
Binds a driver to a USB interface discovered by the kernel, then submits and handles I/O requests through URBs.
Distinct from Device Drivers: Distinct from Device Drivers: focuses specifically on USB interface binding and URB-based I/O, not general device drivers.
Explore 3 awesome GitHub repositories matching operating systems & systems programming · USB Device Driver Implementations. Refine with filters or upvote what's useful.
The Linux Kernel Module Programming Guide is an educational resource that teaches how to write, compile, and manage loadable kernel modules for modern Linux kernels. It covers the complete lifecycle of kernel modules, from building and loading to unloading and debugging, with a focus on extending kernel functionality without recompiling the entire kernel. The guide provides comprehensive coverage of core kernel programming concepts including dynamic module loading, file-operation registration, interrupt handling, kernel-user data copying, concurrency control, and deferred task scheduling. It
Teaches how to write USB device drivers that communicate via USB Request Blocks.
هذا المشروع عبارة عن مكتبة Java لإنشاء اتصالات تسلسلية (serial port) خام بين أجهزة Android والأجهزة الخارجية باستخدام وضع مضيف USB. يوفر جسراً اتصالياً للتفاعل مع المتحكمات الدقيقة والمحولات دون الحاجة إلى صلاحيات الجذر (root). تتضمن المكتبة إطار عمل لتحديد الأجهزة لاكتشاف وتعيين الأجهزة التسلسلية باستخدام معرفات البائع والمنتج. وتتميز بتنفيذ برامج تشغيل متخصصة لمجموعات الشرائح مثل CDC و FTDI لتمكين تبادل البيانات عبر معايير الأجهزة المختلفة. تغطي قدرات تكامل الأجهزة بما في ذلك اكتشاف الأجهزة، وتكوين المنفذ التسلسلي لمعدلات الباود (baud rates)، وإدارة خطوط الإشارة للتحكم في تدفق الأجهزة.
Implements USB interface binding and I/O for Common Class and FTDI chipsets.
This project is a reference library of firmware examples and a development framework for creating embedded C applications on the RP2040 microcontroller. It provides a collection of hardware peripheral drivers and foundational patterns for managing system resources in resource-constrained environments. The library features reference implementations for programmable I/O state machines, allowing for the creation of custom hardware-level protocols. It also provides a multicore embedded framework to distribute computational workloads across multiple processor cores using symmetric processing. The
Supports creating custom USB peripherals like keyboards, mice, or storage drives by implementing specific device profiles.