原飛利浦usb OTG芯片ISP1161的開發板程序包。包含usb協議棧,hcd、hal、usbd等源代碼。日本高手寫的源代碼。包含DMA傳輸,效率很高。
上傳時間: 2014-01-12
上傳用戶:love1314
linux命令指南,Prentice Hall 出版,相當經典,學習linux必備。
上傳時間: 2017-03-31
上傳用戶:tonyshao
Essential Linux Device Drivers by Sreekrishnan Venkateswaran -------------------------------------------------------------------------------- Publisher: Prentice Hall Pub Date: March 27, 2008 Print ISBN-10: 0-13-239655-6 Print ISBN-13: 978-0-13-239655-4 Pages: 744 Slots: 0.5 而且kernel里面有的驅動基本都涉及到了 。比較新的書。 -Essential Linux Device Drivers by Sreekrishnan Venkateswaran Publisher: Prentice Hall Pub Date: March 27, 2008 Print ISBN-10: 0-13-239655-6 Print ISBN-13: 978-0-13-239655-4 Pages: 744 Slots: 0.5 inside the kernel and some basic drivers are involved. Relatively new book.(補全上次,上下半部).保證可用
標簽: Venkateswaran Sreekrishnan Essential Drivers
上傳時間: 2014-01-19
上傳用戶:270189020
This application note explains the process of eveloping and debugging a hardware abstraction layer (HAL) software device driver, to aid device driver development for the HAL of the Altera Nios® II system. The various software development stages are illustrated using the Altera_Avalon_UART as an example hardware device, and an example of a HAL software device driver called my_uart.
標簽: application abstraction eveloping debugging
上傳時間: 2013-12-16
上傳用戶:風之驕子
STM32F053工程模版在自己做了個STM32L053的工程模版基于HAL庫
上傳時間: 2016-11-15
上傳用戶:fanchcn
This book stems from its ancestor Digital Transmission Theory,published by Prentice-Hall in 1987 and now out of print. Following the suggestion of several colleagues who complained about the unavailability of a textbook they liked and adopted in their courses, laying a strong emphasis on wireless communication. We hope that those who liked the previous book will find again its flavor here,while new reader, untouched by nostalgia, will judge it favorably.
標簽: Transmission Principles Digital of
上傳時間: 2020-05-31
上傳用戶:shancjb
ST已經推出了三種庫函數,用以方便客戶快速開發STM32系列的MCU。從最早的標準外設驅動庫,到后來的Cube HAL,再到 Cube LL,還有直接寫寄存器。這幾種庫的代碼效率到底如何呢?本文將針對這個問題進行分析和對比,最后提供對比數據供大家參考。
標簽: stm32
上傳時間: 2022-02-22
上傳用戶:
里面包含STM32F4的HAL庫函數用法,對于新手非常有用
標簽: stm32f4
上傳時間: 2022-03-02
上傳用戶:
TLE5012b,這個是英飛凌的一個磁傳感器,很跨時代的一個產品,綜合性能都很高,15位解析度,20khz刷新率,典型8mhz的spi時鐘。
上傳時間: 2022-04-06
上傳用戶:fliang
#include "NUC1xx.h"#include "Hal.h"#include "pwm.h"//wait current PWM cycle done, otherwise there maybe short pulse on FETvoid PWM_Stop(U8 ch){ switch(ch) { case PWM_CHANNEL_A: PWMA->u32CNR1 = 0; PWMA->u32CMR1 = 0; while(PWMA->u32PDR1 != 0); break; case PWM_CHANNEL_B: PWMA->u32CNR2 = 0; PWMA->u32CMR2 = 0; while(PWMA->u32PDR2 != 0); break; case PWM_CHANNEL_C: PWMA->u32CNR3 = 0; PWMA->u32CMR3 = 0; while(PWMA->u32PDR3 != 0); break; default: while(1); } PWMA->u32POE &= ~(1<<ch); PWMA->u32PCR &= ~(1<<(ch*8));}
上傳時間: 2022-06-01
上傳用戶:kingwide