首页 磁力链接怎么用

[FreeTutorials.us] mastering-microcontroller-with-peripheral-driver-development

文件类型 收录时间 最后活跃 资源热度 文件大小 文件数量
视频 2017-11-8 09:09 2024-4-26 14:43 201 1.46 GB 196
二维码链接
[FreeTutorials.us] mastering-microcontroller-with-peripheral-driver-development的二维码
种子下载(838888不存储任何种子文件)
种子下载线路1(迅雷)--推荐
种子下载线路2(比特彗星)
种子下载线路3(torcache)
3条线路均为国内外知名下载网站种子链接,内容跟本站无关!
文件列表
  1. 01 Overview of the Course/001 What is this course all about.mp419.23MB
  2. 02 GPIO Must know concepts/003 GPIO pin and GPIO port.mp45.36MB
  3. 02 GPIO Must know concepts/004 GPIO behind the scene.mp45.94MB
  4. 02 GPIO Must know concepts/005 GPIO input mode with high impedance state.mp42.9MB
  5. 02 GPIO Must know concepts/006 GPIO input mode with pull-updown state.mp42.77MB
  6. 02 GPIO Must know concepts/007 GPIO output mode with open drain state.mp411.39MB
  7. 02 GPIO Must know concepts/008 GPIO output mode with push pull state.mp45.74MB
  8. 02 GPIO Must know concepts/009 Optimizing IO power consumption.mp46.86MB
  9. 03 GPIO Programming structure and Registers/010 GPIO programming structure.mp48.15MB
  10. 03 GPIO Programming structure and Registers/011 Exploring GPIO PORT and pins of STM32F4xx Discovery board.mp42.49MB
  11. 03 GPIO Programming structure and Registers/012 GPIO Mode registerused to set mode for a pin.mp47.97MB
  12. 03 GPIO Programming structure and Registers/013 GPIO port output type registerused to specify op type.mp42.93MB
  13. 03 GPIO Programming structure and Registers/014 GPIO port output speed register how quick transition.mp47.37MB
  14. 03 GPIO Programming structure and Registers/015 GPIO port pull-uppull-down registerused to activatedeactivate pull-ups.mp44.72MB
  15. 03 GPIO Programming structure and Registers/016 GPIO port input data register used to read from pin.mp42.61MB
  16. 03 GPIO Programming structure and Registers/017 GPIO port output data registerused to write to pin.mp42.75MB
  17. 03 GPIO Programming structure and Registers/018 Enabling and disabling GPIO peripheral clock.mp47.97MB
  18. 03 GPIO Programming structure and Registers/019 GPIO alternate function registerused to set alternate functionality for a pin.mp49.41MB
  19. 04 GPIO Driver Development Lab Setup/021 Installing KEIL-MDK-5.mp46.48MB
  20. 04 GPIO Driver Development Lab Setup/022 Installing Software Packs.mp411.11MB
  21. 04 GPIO Driver Development Lab Setup/023 Creating Your First KEIL Project.mp411.91MB
  22. 04 GPIO Driver Development Lab Setup/025 Understaning The Discovery Board.mp49.45MB
  23. 05 GPIO Driver Development Getting started/026 Overview of the driver development task.mp43.79MB
  24. 05 GPIO Driver Development Getting started/027 Driver API Requirements.mp43.4MB
  25. 06 GPIO Driver Development Explore MCU specific header file/028 CreatingOrganizing project files in KEIL.mp45.02MB
  26. 06 GPIO Driver Development Explore MCU specific header file/029 Locating MCU specific Header File.mp43.25MB
  27. 06 GPIO Driver Development Explore MCU specific header file/030 Exploring MCU specific Header File.mp415.63MB
  28. 07 GPIO Driver Development Driver header file/031 Implementing Driver Header file.mp419.84MB
  29. 08 GPIO Driver Development Implementing Init API/032 Code to configure the mode.mp48.93MB
  30. 08 GPIO Driver Development Implementing Init API/033 Code to configure GPIO speed and output type.mp43.87MB
  31. 08 GPIO Driver Development Implementing Init API/034 Code to configure GPIO pull-uppull down.mp42.89MB
  32. 08 GPIO Driver Development Implementing Init API/035 Configuring alternate function.mp46.52MB
  33. 09 GPIO Driver Development Implementing ReadWrite APIs/036 Implementing GPIO Read API.mp43.58MB
  34. 09 GPIO Driver Development Implementing ReadWrite APIs/037 Implementing GPIO Write API.mp42.49MB
  35. 10 GPIO driver Code testingWriting Sample APP/038 Write init function to configure LED.mp49.31MB
  36. 10 GPIO driver Code testingWriting Sample APP/039 Code implementation to turn onofftoggle LED.mp43.93MB
  37. 10 GPIO driver Code testingWriting Sample APP/040 Testing the sample Application on development board.mp42.73MB
  38. 10 GPIO driver Code testingWriting Sample APP/041 Testing LED behaviour on logic analyser software.mp46.33MB
  39. 11 GPIO Interrupt Handling/042 Exploring How peripherals interrupts the processor via NVIC.mp419.71MB
  40. 11 GPIO Interrupt Handling/043 GPIO irq numbers.mp413.48MB
  41. 11 GPIO Interrupt Handling/044 Vector table and IRQ handlers.mp46.59MB
  42. 11 GPIO Interrupt Handling/045 Adding interrupt handling apis to our driver.mp45.27MB
  43. 11 GPIO Interrupt Handling/046 Implementing APIs to Configure and Enable External Interrupts.mp414.52MB
  44. 11 GPIO Interrupt Handling/047 Clearing external interrupt otherwise NVIC will keep getting kicked.mp42.93MB
  45. 11 GPIO Interrupt Handling/048 Test interrupt APIs we developed by using button.mp48.18MB
  46. 12 SPI Essentials All about SPI/049 Introduction to SPI.mp43.45MB
  47. 12 SPI Essentials All about SPI/050 Understanding SPI protocol.mp417.05MB
  48. 12 SPI Essentials All about SPI/051 SPI behind the scene.mp44.99MB
  49. 13 What is phase polarity and SPI modes/052 Significance of Polarity and Phase.mp411.4MB
  50. 13 What is phase polarity and SPI modes/053 Different SPI Modes with Timing diagram.mp47.77MB
  51. 13 What is phase polarity and SPI modes/054 Uni-Directional and Bi-Directional SPI.mp48.07MB
  52. 14 SPI Functional Block and Clock/055 Exploring SPI functional blockHow SPI Engine works in MCU.mp49.56MB
  53. 14 SPI Functional Block and Clock/056 SPI Peripheral clock and Serial clock.mp412.85MB
  54. 15 SPI Important Registers/057 Exploring SPI Control RegistersCR.mp414.2MB
  55. 15 SPI Important Registers/058 Exploring SPI Data RegistersDR.mp44.37MB
  56. 15 SPI Important Registers/059 Exploring SPI Status RegistersSR.mp43.39MB
  57. 16 SPI Driver Development Getting started/060 Overview.mp43.55MB
  58. 16 SPI Driver Development Getting started/061 Driver API Requirements.mp42.51MB
  59. 16 SPI Driver Development Getting started/062 Exploring different SPI Peripherals and pin packs of the MCU.mp42.35MB
  60. 17 SPI Driver Development Writing Driver header file/063 SPI Register Bit Definitions MacrosConverting register details in to Macros.mp49.22MB
  61. 17 SPI Driver Development Writing Driver header file/064 SPI Data structures.mp417.96MB
  62. 17 SPI Driver Development Writing Driver header file/065 Driver exposed APIs to handle SPI.mp48.99MB
  63. 18 SPI Driver Development Implementing init API/066 Writing init function and helper functions.mp44.92MB
  64. 18 SPI Driver Development Implementing init API/067 Configuring mode phase and polarity.mp43.78MB
  65. 18 SPI Driver Development Implementing init API/068 Configuring datasize baudrate and direction.mp43.49MB
  66. 18 SPI Driver Development Implementing init API/069 Configuring NSSSlave select pin.mp410.78MB
  67. 18 SPI Driver Development Implementing init API/070 EnablingDisabling SPI Peripheral.mp43.31MB
  68. 19 SPI Driver Development Implementing TXRX API/071 Implementing TX API for master.mp48.66MB
  69. 19 SPI Driver Development Implementing TXRX API/072 Implementing RX API for master.mp45.3MB
  70. 19 SPI Driver Development Implementing TXRX API/073 Implementing TX API for slave.mp46.74MB
  71. 19 SPI Driver Development Implementing TXRX API/074 Implementing RX API for slave.mp42.68MB
  72. 20 SPI MasterSlave Communication/075 How does SPI master TXRX data.mp416.97MB
  73. 20 SPI MasterSlave Communication/076 How does SPI slave TXRX data.mp48.76MB
  74. 21 SPI Driver Development Implementing TX ISR/077 Understanding SPI TXRX IRQ numbers.mp413.66MB
  75. 21 SPI Driver Development Implementing TX ISR/078 Setting up TXERXNE interrupt.mp43.33MB
  76. 21 SPI Driver Development Implementing TX ISR/079 Writing SPI irq handler.mp46.23MB
  77. 21 SPI Driver Development Implementing TX ISR/080 Handling spi Tx interrupt.mp46.76MB
  78. 22 SPI Driver Development Implementing RX ISR/081 Handling RX done interrupt in ISR.mp43.52MB
  79. 23 Writing SPI sample application Getting Started/082 Understanding the Requirements.mp45.72MB
  80. 23 Writing SPI sample application Getting Started/083 Understanding connection diagram.mp44.73MB
  81. 24 Writing SPI sample application Master Code/084 Initialization.mp429.1MB
  82. 24 Writing SPI sample application Master Code/085 Defining various IRQ handlers.mp47.35MB
  83. 24 Writing SPI sample application Master Code/086 Master write Sequences send CMD get ACK send data.mp410.74MB
  84. 24 Writing SPI sample application Master Code/087 Master Receive SequencesSend CMD get ACK get data.mp44.85MB
  85. 25 Writing SPI sample application Slave Code Implementation/088 Initialization.mp42.62MB
  86. 25 Writing SPI sample application Slave Code Implementation/089 Slave Handling ReadWrite command from master.mp412.36MB
  87. 26 Testing Decoding and Debugging Tips/090 Initial testing on hardware.mp416.55MB
  88. 26 Testing Decoding and Debugging Tips/091 Capture SPI transcation on Logic analyzer.mp410.75MB
  89. 26 Testing Decoding and Debugging Tips/092 Decoding SPI transcation Using logic analyzer.mp48.06MB
  90. 26 Testing Decoding and Debugging Tips/093 Common problems in SPI and Debugging Tips.mp411.22MB
  91. 27 I2C Essentials/094 Intro to I2C protocol.mp412.48MB
  92. 27 I2C Essentials/095 I2C Hardware Setup.mp45.34MB
  93. 28 I2C protocol in Detail/096 Basics.mp45.3MB
  94. 28 I2C protocol in Detail/097 Address phase.mp42.84MB
  95. 28 I2C protocol in Detail/098 Start Condition.mp42.44MB
  96. 28 I2C protocol in Detail/099 ACKNACK.mp43.05MB
  97. 28 I2C protocol in Detail/100 Stop Condition.mp42.04MB
  98. 28 I2C protocol in Detail/101 Master ReadWrite Data Phase.mp45.91MB
  99. 28 I2C protocol in Detail/102 Repeated start start with out a stop.mp410.45MB
  100. 28 I2C protocol in Detail/103 Clock Stretching.mp48.7MB
  101. 29 I2C Operating Modes/104 I2C in fast mode and standard mode.mp43.92MB
  102. 29 I2C Operating Modes/105 I2C duty cycle.mp411.45MB
  103. 30 I2C Addressing mode/106 7bit addressing.mp43.44MB
  104. 30 I2C Addressing mode/107 10 bit addressing.mp43.18MB
  105. 31 I2C Functional block diagram and Clocks/108 Exploring I2C functional block in the MCU.mp46.31MB
  106. 31 I2C Functional block diagram and Clocks/109 I2C peripheral clock and serial line clockFpclk and SCL.mp412.46MB
  107. 32 I2C Interrupts/110 I2C IRQs and Interrupt Mapping.mp412.4MB
  108. 32 I2C Interrupts/111 Exploring I2C IRQ numbers.mp45.94MB
  109. 33 I2C Peripheral Registers/112 Exploring I2C Control RegistersCR.mp417.09MB
  110. 33 I2C Peripheral Registers/113 Exploring I2C Own Address RegistersOAR.mp42.48MB
  111. 33 I2C Peripheral Registers/114 Exploring I2C Data RegisterDR.mp44.5MB
  112. 33 I2C Peripheral Registers/115 Exploring I2C Status RegistersSR.mp49.88MB
  113. 33 I2C Peripheral Registers/116 Exploring I2C Clock Control RegisterCCR.mp45.93MB
  114. 34 I2C MasterSlave Communication/117 How I2C Master TX data.mp410.89MB
  115. 34 I2C MasterSlave Communication/118 How I2C Master RX data.mp425.39MB
  116. 34 I2C MasterSlave Communication/119 How I2C Slave TX data.mp43.7MB
  117. 35 I2C Driver Development Getting started/120 Overview.mp43.09MB
  118. 35 I2C Driver Development Getting started/121 Understanding the Requirements.mp41.6MB
  119. 35 I2C Driver Development Getting started/122 Exploring different I2C Peripherals and pins of the MCU.mp42.84MB
  120. 36 I2C Driver Development Driver header file/123 I2C Register Bit Definitions Macros.mp410.65MB
  121. 36 I2C Driver Development Driver header file/124 I2C Data structures.mp416.23MB
  122. 36 I2C Driver Development Driver header file/125 I2C Driver Exposed APIs.mp46.42MB
  123. 37 I2C Driver Development Init Function/126 Init API and Helper Functions.mp42.91MB
  124. 37 I2C Driver Development Init Function/127 Code Implementation to EnableDisable I2C peripheral.mp41.56MB
  125. 37 I2C Driver Development Init Function/128 Configure clock stretching own address auto ACKing.mp44.39MB
  126. 37 I2C Driver Development Init Function/129 Configure I2C mode addressing mode and duty cycle.mp45.13MB
  127. 37 I2C Driver Development Init Function/130 Code to Initialize I2C Serial Clock.mp46.57MB
  128. 37 I2C Driver Development Init Function/131 Code to Generate StartStop condition.mp42.84MB
  129. 37 I2C Driver Development Init Function/132 EnablingDisabling Buff Event and Error interrupts.mp44.02MB
  130. 37 I2C Driver Development Init Function/133 Other Helper Functions.mp45.55MB
  131. 38 I2C Driver Developemnt Writing TXRX API/134 Implementing TX API for MASTER.mp48.89MB
  132. 38 I2C Driver Developemnt Writing TXRX API/135 Implementing RX API for MASTER.mp45.85MB
  133. 38 I2C Driver Developemnt Writing TXRX API/136 Implementing TX API for SLAVE.mp43.59MB
  134. 38 I2C Driver Developemnt Writing TXRX API/137 Implementing RX API for SLAVE.mp42.63MB
  135. 39 I2C Event Interrupt handling for master/138 Implementing event interrupt handler.mp44.13MB
  136. 39 I2C Event Interrupt handling for master/139 Handling of TXE event for master.mp42.44MB
  137. 39 I2C Event Interrupt handling for master/140 Handling of TX BTF event for master.mp43.97MB
  138. 40 I2C Event Interrupt handling for slave/141 Handling of slave Address Match Event.mp43.21MB
  139. 40 I2C Event Interrupt handling for slave/142 Handling of STOP detection event Interrupt.mp44.11MB
  140. 40 I2C Event Interrupt handling for slave/143 Handling of TXE event Interrupt.mp44.91MB
  141. 40 I2C Event Interrupt handling for slave/144 Handling of TX BTF event Interrupt.mp42.17MB
  142. 40 I2C Event Interrupt handling for slave/145 Handling of RXNE and BTF event interrupt.mp44.03MB
  143. 41 I2C Error Interrupt Handling/146 Writing Error interrupt handler.mp46.68MB
  144. 41 I2C Error Interrupt Handling/147 Handling of Different I2C Errors.mp47.05MB
  145. 42 Writing I2C sample application Getting ready/148 Understanding the Requirements.mp44.84MB
  146. 42 Writing I2C sample application Getting ready/149 Understanding connection diagram.mp41.24MB
  147. 43 Writing I2C sample Application Master Code/150 I2C Initialization.mp424.11MB
  148. 43 Writing I2C sample Application Master Code/151 Implementing I2C IRQ Handlers.mp45.85MB
  149. 43 Writing I2C sample Application Master Code/152 Implementing master write Sequencescmdlengthdata.mp46.69MB
  150. 43 Writing I2C sample Application Master Code/153 Implementing master read Sequencescmdlengthdata.mp45.1MB
  151. 43 Writing I2C sample Application Master Code/154 Slave Handling ReadWrite Command from master.mp46MB
  152. 44 Testing and Protocol Decoding using logic analyzer lets get the trace/155 Initial testing on hardware.mp419.76MB
  153. 44 Testing and Protocol Decoding using logic analyzer lets get the trace/156 Decoding and Analyzing I2C transaction using logic analyzer.mp420.04MB
  154. 44 Testing and Protocol Decoding using logic analyzer lets get the trace/157 Common Problems in I2C and Debugging Tips.mp47.01MB
  155. 45 UART Essentials/158 Intro UART vs USART.mp47.04MB
  156. 45 UART Essentials/159 Understanding UART pins.mp45.71MB
  157. 45 UART Essentials/160 UART frame formats.mp44.3MB
  158. 45 UART Essentials/161 Baud Rate.mp45.13MB
  159. 45 UART Essentials/162 Synchronization bits.mp44.08MB
  160. 45 UART Essentials/163 UART Parity.mp47.85MB
  161. 46 UART functional block and Peripheral Clock/164 Exploring UART functional block.mp48.14MB
  162. 46 UART functional block and Peripheral Clock/165 UART peripheral clock.mp47.21MB
  163. 47 UART Communication/166 UART Transmitter.mp47.15MB
  164. 47 UART Communication/167 Uart Receiver.mp410.11MB
  165. 48 UART Interrupts/168 Exploring UART Interrupt Mapping.mp47.99MB
  166. 49 UART Registers/169 Exploring UART Control Registers.mp412.42MB
  167. 49 UART Registers/170 Exploring UART Data Registers.mp44.87MB
  168. 49 UART Registers/171 Exploring UART Status Registers.mp49.42MB
  169. 49 UART Registers/172 UART Baudrate Calculation.mp412.98MB
  170. 50 UART Driver Development Getting Started/173 Overview.mp42.47MB
  171. 50 UART Driver Development Getting Started/174 Understanding the Requirements.mp41.84MB
  172. 50 UART Driver Development Getting Started/175 Exploring Different UART Peripherals and pins of the MCU.mp43.35MB
  173. 51 UART Driver Development Driver Header File/176 UART Register Bit Definitions Macros.mp44.21MB
  174. 51 UART Driver Development Driver Header File/177 Data Structures used and Driver exposed APIs.mp411.11MB
  175. 52 UART Driver Development Writing init Function/178 Writing inti function and helper functions.mp411.08MB
  176. 52 UART Driver Development Writing init Function/179 Configuring Word length Stop Bits.mp43.65MB
  177. 52 UART Driver Development Writing init Function/180 Configuring Baudrate oversampling and Interrupts.mp414.08MB
  178. 53 UART Driver Development Writing TXRX function/181 Writing TX function.mp46.35MB
  179. 53 UART Driver Development Writing TXRX function/182 Writing RX Function.mp45.01MB
  180. 54 UART Driver Development Interrupt Handling/183 Implementing UART IRQ Handler.mp417.18MB
  181. 54 UART Driver Development Interrupt Handling/184 Handling TXE interrupt.mp44.43MB
  182. 54 UART Driver Development Interrupt Handling/185 Handling of TX Complete Interrupt.mp46.98MB
  183. 54 UART Driver Development Interrupt Handling/186 Handling RXNE Interrupt.mp48.3MB
  184. 55 UART sample application Getting ready/187 Understanding the Requirements.mp43.78MB
  185. 55 UART sample application Getting ready/188 Understanding connection diagram.mp45MB
  186. 55 UART sample application Getting ready/189 Exploring uart sniffer software for pc.mp44.98MB
  187. 56 UART sample application Implementation/190 UART Initializations and Txing.mp410.5MB
  188. 56 UART sample application Implementation/191 Receiving commands from PC.mp45.83MB
  189. 57 Running and Testing/192 Testing on hardware.mp46.18MB
  190. 58 Creating printf library for your board/193 Introduction.mp42.22MB
  191. 58 Creating printf library for your board/194 Implementing UART print apis.mp412.42MB
  192. 58 Creating printf library for your board/195 Creating static library in KEIL and testing.mp412.67MB
  193. 59 MCU Clocks Configurations and Measurements/196 Exploring System AHB APB clocks of the MCU.mp424.1MB
  194. 59 MCU Clocks Configurations and Measurements/197 Clocking MCU by using External Crystal OscillatorHSE.mp49.74MB
  195. 59 MCU Clocks Configurations and Measurements/198 Measuring HSEHSI PLL and System ClockRouting Clocks to GPIOs.mp424.8MB
  196. 59 MCU Clocks Configurations and Measurements/199 Clocking MCU by Internal PLL Running MCU at Full Speed.mp416.73MB
友情提示
不会用的朋友看这里 把磁力链接复制到离线下载,或者bt下载软件里即可下载文件,或者直接复制迅雷链接到迅雷里下载! 亲,你造吗?将网页分享给您的基友,下载的人越多速度越快哦!

违规内容投诉邮箱:[email protected]

概述 838888磁力搜索是一个磁力链接搜索引擎,是学术研究的副产品,用于解决资源过度分散的问题 它通过BitTorrent协议加入DHT网络,实时的自动采集数据,仅存储文件的标题、大小、文件列表、文件标识符(磁力链接)等基础信息 838888磁力搜索不下载任何真实资源,无法判断资源的合法性及真实性,使用838888磁力搜索服务的用户需自行鉴别内容的真伪 838888磁力搜索不上传任何资源,不提供Tracker服务,不提供种子文件的下载,这意味着838888磁力搜索 838888磁力搜索是一个完全合法的系统