MDK inc下的stm32f10x_gpio.h和STM32F10x Standard Peripherals Library 下的stm32f10x_gpio.h区别

2019-07-21 01:19发布

MDK inc下的stm32f10x_gpio.h和STM32F10x Standard Peripherals Library  下的stm32f10x_gpio.h 不同是不是因为MDK 的版本和STM32F10x Standard Peripherals Library 版本不匹配造成的


部分差分如下:


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
3条回答
单者
2019-07-21 09:39
Sub ShowFolderInfo()
    Dim folderspec$
    Dim filename$
    folderspec = "E:huoqutest"
    'Debug.Print folderspec
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set f = fs.GetFolder(folderspec)
    's = f.DateCreated
    'MsgBox s
    'p = f.Path
    'MsgBox p
    'n = f.Name
    'MsgBox n
    
    For Each ff In f.SubFolders
    m = m + 1
    Cells(m, 1) = ff.Name
       filepath = "E:huoqutest" & ff.Name & ""
       Debug.Print filepath
       filename = Dir(filepath)
       Debug.Print filename
       Do While filename <> ""
         
         ss = ss & filename
         ss = ss & vbCrLf
         filename = Dir
         Debug.Print filename
       Loop
       n = n + 1
       Cells(n, 4) = ss
       ss = ""
       
    Next
End Sub

一周热门 更多>