RealThread_STM32F7.yaml 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957
  1. ---
  2. vendor: RealThread
  3. dvendor: STMicroelectronics
  4. name: STM32F7
  5. version: 0.2.0
  6. yaml_version: 1
  7. type: Chip_Support_Packages
  8. family_name: STM32
  9. series:
  10. description: |-
  11. The STM32F7 family incorporates high-speed embedded memories and an extensive range of enhanced I/Os and peripherals connected to two APB buses, three AHB buses and a 32-bit multi-AHB bus matrix.
  12. - 64-Kbyte of CCM (core coupled memory) data RAM
  13. - LCD parallel interface, 8080/6800 modes
  14. - Timer with quadrature (incremental) encoder input
  15. - 5 V-tolerant I/Os
  16. - Parallel camera interface
  17. - True random number generator
  18. - RTC: subsecond accuracy, hardware calendar
  19. - 96-bit unique ID
  20. series_name: STM32F7
  21. peripheral: {}
  22. sub_series:
  23. - sub_series_name: STM32F745
  24. cpu_info:
  25. fpu: SP_FPU
  26. chips:
  27. - chip_name: STM32F745ZG
  28. peripheral: {}
  29. memory:
  30. - id: IROM1
  31. start: '0x08000000'
  32. size: '0x100000'
  33. default: '1'
  34. - id: IROM2
  35. start: '0x00200000'
  36. size: '0x100000'
  37. default: '0'
  38. compiler:
  39. gcc:
  40. entry_point: entry
  41. link_script: linkscripts\STM32F745ZG\link.lds
  42. marco: []
  43. files: []
  44. armcc:
  45. entry_point: none
  46. link_script: none
  47. marco: []
  48. files: []
  49. iarcc:
  50. entry_point: none
  51. link_script: none
  52. marco: []
  53. files: []
  54. - chip_name: STM32F745ZE
  55. peripheral: {}
  56. memory:
  57. - id: IROM1
  58. start: '0x08000000'
  59. size: '0x80000'
  60. default: '1'
  61. - id: IROM2
  62. start: '0x00200000'
  63. size: '0x80000'
  64. default: '0'
  65. compiler:
  66. gcc:
  67. entry_point: entry
  68. link_script: linkscripts\STM32F745ZE\link.lds
  69. marco: []
  70. files: []
  71. armcc:
  72. entry_point: none
  73. link_script: none
  74. marco: []
  75. files: []
  76. iarcc:
  77. entry_point: none
  78. link_script: none
  79. marco: []
  80. files: []
  81. - chip_name: STM32F745VG
  82. peripheral: {}
  83. memory:
  84. - id: IROM1
  85. start: '0x08000000'
  86. size: '0x100000'
  87. default: '1'
  88. - id: IROM2
  89. start: '0x00200000'
  90. size: '0x100000'
  91. default: '0'
  92. compiler:
  93. gcc:
  94. entry_point: entry
  95. link_script: linkscripts\STM32F745VG\link.lds
  96. marco: []
  97. files: []
  98. armcc:
  99. entry_point: none
  100. link_script: none
  101. marco: []
  102. files: []
  103. iarcc:
  104. entry_point: none
  105. link_script: none
  106. marco: []
  107. files: []
  108. - chip_name: STM32F745VE
  109. peripheral: {}
  110. memory:
  111. - id: IROM1
  112. start: '0x08000000'
  113. size: '0x80000'
  114. default: '1'
  115. - id: IROM2
  116. start: '0x00200000'
  117. size: '0x80000'
  118. default: '0'
  119. compiler:
  120. gcc:
  121. entry_point: entry
  122. link_script: linkscripts\STM32F745VE\link.lds
  123. marco: []
  124. files: []
  125. armcc:
  126. entry_point: none
  127. link_script: none
  128. marco: []
  129. files: []
  130. iarcc:
  131. entry_point: none
  132. link_script: none
  133. marco: []
  134. files: []
  135. - chip_name: STM32F745IG
  136. peripheral: {}
  137. memory:
  138. - id: IROM1
  139. start: '0x08000000'
  140. size: '0x100000'
  141. default: '1'
  142. - id: IROM2
  143. start: '0x00200000'
  144. size: '0x100000'
  145. default: '0'
  146. compiler:
  147. gcc:
  148. entry_point: entry
  149. link_script: linkscripts\STM32F745IG\link.lds
  150. marco: []
  151. files: []
  152. armcc:
  153. entry_point: none
  154. link_script: none
  155. marco: []
  156. files: []
  157. iarcc:
  158. entry_point: none
  159. link_script: none
  160. marco: []
  161. files: []
  162. - chip_name: STM32F745IE
  163. peripheral: {}
  164. memory:
  165. - id: IROM1
  166. start: '0x08000000'
  167. size: '0x80000'
  168. default: '1'
  169. - id: IROM2
  170. start: '0x00200000'
  171. size: '0x80000'
  172. default: '0'
  173. compiler:
  174. gcc:
  175. entry_point: entry
  176. link_script: linkscripts\STM32F745IE\link.lds
  177. marco: []
  178. files: []
  179. armcc:
  180. entry_point: none
  181. link_script: none
  182. marco: []
  183. files: []
  184. iarcc:
  185. entry_point: none
  186. link_script: none
  187. marco: []
  188. files: []
  189. ui:
  190. uart:
  191. default_value: UART1
  192. prompt_message_en: select one uart as console output interface
  193. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  194. tx_pin:
  195. default_value: PA9
  196. prompt_message_en: 'set the tx pin name of the console device interface, the
  197. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  198. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  199. PB6
  200. rx_pin:
  201. default_value: PA10
  202. prompt_message_en: 'set the rx pin name of the console device interface, the
  203. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  204. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  205. docs:
  206. - file: documents\DM00124865.pdf
  207. title: STM32F74xx/5xx Reference Manual
  208. - file: documents\DM00166116.pdf
  209. title: STM32F745/746 Data Sheet
  210. svd:
  211. file: debug\svd\STM32F7x5_v1r1.svd
  212. compiler:
  213. gcc:
  214. entry_point: none
  215. link_script: none
  216. marco:
  217. - STM32F745xx
  218. files:
  219. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f745xx.S
  220. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f745xx.h
  221. - libraries\CMSIS\Lib\GCC
  222. armcc:
  223. entry_point: none
  224. link_script: none
  225. marco: []
  226. files: []
  227. iarcc:
  228. entry_point: none
  229. link_script: none
  230. marco: []
  231. files: []
  232. memory:
  233. - id: IRAM1
  234. start: '0x20010000'
  235. size: '0x40000'
  236. init: '0'
  237. default: '1'
  238. - id: IRAM2
  239. start: '0x20000000'
  240. size: '0x10000'
  241. init: '0'
  242. default: '1'
  243. project_type:
  244. bare_metal:
  245. function_map:
  246. clk_init: none
  247. uart_init: none
  248. putc: none
  249. sysTick: none
  250. marco:
  251. - SOC_FAMILY_STM32
  252. - SOC_SERIES_STM32F7
  253. - USE_HAL_DRIVER
  254. source_files:
  255. - drivers\baremetal
  256. rtt_nano:
  257. function_map:
  258. clk_init: none
  259. uart_init: none
  260. putc: none
  261. getc: none
  262. sysTick: none
  263. heap_init: none
  264. marco:
  265. - SOC_FAMILY_STM32
  266. - SOC_SERIES_STM32F7
  267. - USE_HAL_DRIVER
  268. source_files:
  269. - drivers\nano
  270. rtt:
  271. function_map:
  272. rt_hw_board_init;: none
  273. rt_hw_serial_register: none
  274. rt_hw_pin_register: none
  275. heap_init: none
  276. marco:
  277. - SOC_FAMILY_STM32
  278. - SOC_SERIES_STM32F7
  279. - USE_HAL_DRIVER
  280. source_files:
  281. - drivers\rtt
  282. - sub_series_name: STM32F746
  283. cpu_info:
  284. fpu: SP_FPU
  285. chips:
  286. - chip_name: STM32F746ZG
  287. peripheral: {}
  288. memory:
  289. - id: IROM1
  290. start: '0x08000000'
  291. size: '0x100000'
  292. default: '1'
  293. - id: IROM2
  294. start: '0x00200000'
  295. size: '0x100000'
  296. default: '0'
  297. compiler:
  298. gcc:
  299. entry_point: entry
  300. link_script: linkscripts\STM32F746ZG\link.lds
  301. marco: []
  302. files: []
  303. armcc:
  304. entry_point: none
  305. link_script: none
  306. marco: []
  307. files: []
  308. iarcc:
  309. entry_point: none
  310. link_script: none
  311. marco: []
  312. files: []
  313. - chip_name: STM32F746VG
  314. peripheral: {}
  315. memory:
  316. - id: IROM1
  317. start: '0x08000000'
  318. size: '0x100000'
  319. default: '1'
  320. - id: IROM2
  321. start: '0x00200000'
  322. size: '0x100000'
  323. default: '0'
  324. compiler:
  325. gcc:
  326. entry_point: entry
  327. link_script: linkscripts\STM32F746VG\link.lds
  328. marco: []
  329. files: []
  330. armcc:
  331. entry_point: none
  332. link_script: none
  333. marco: []
  334. files: []
  335. iarcc:
  336. entry_point: none
  337. link_script: none
  338. marco: []
  339. files: []
  340. - chip_name: STM32F746IG
  341. peripheral: {}
  342. memory:
  343. - id: IROM1
  344. start: '0x08000000'
  345. size: '0x100000'
  346. default: '1'
  347. - id: IROM2
  348. start: '0x00200000'
  349. size: '0x100000'
  350. default: '0'
  351. compiler:
  352. gcc:
  353. entry_point: entry
  354. link_script: linkscripts\STM32F746IG\link.lds
  355. marco: []
  356. files: []
  357. armcc:
  358. entry_point: none
  359. link_script: none
  360. marco: []
  361. files: []
  362. iarcc:
  363. entry_point: none
  364. link_script: none
  365. marco: []
  366. files: []
  367. - chip_name: STM32F746BG
  368. peripheral: {}
  369. memory:
  370. - id: IROM1
  371. start: '0x08000000'
  372. size: '0x100000'
  373. default: '1'
  374. - id: IROM2
  375. start: '0x00200000'
  376. size: '0x100000'
  377. default: '0'
  378. compiler:
  379. gcc:
  380. entry_point: entry
  381. link_script: linkscripts\STM32F746BG\link.lds
  382. marco: []
  383. files: []
  384. armcc:
  385. entry_point: none
  386. link_script: none
  387. marco: []
  388. files: []
  389. iarcc:
  390. entry_point: none
  391. link_script: none
  392. marco: []
  393. files: []
  394. - chip_name: STM32F746NG
  395. peripheral: {}
  396. memory:
  397. - id: IROM1
  398. start: '0x08000000'
  399. size: '0x100000'
  400. default: '1'
  401. - id: IROM2
  402. start: '0x00200000'
  403. size: '0x100000'
  404. default: '0'
  405. compiler:
  406. gcc:
  407. entry_point: entry
  408. link_script: linkscripts\STM32F746NG\link.lds
  409. marco: []
  410. files: []
  411. armcc:
  412. entry_point: none
  413. link_script: none
  414. marco: []
  415. files: []
  416. iarcc:
  417. entry_point: none
  418. link_script: none
  419. marco: []
  420. files: []
  421. - chip_name: STM32F746ZE
  422. peripheral: {}
  423. memory:
  424. - id: IROM1
  425. start: '0x08000000'
  426. size: '0x80000'
  427. default: '1'
  428. - id: IROM2
  429. start: '0x00200000'
  430. size: '0x80000'
  431. default: '0'
  432. compiler:
  433. gcc:
  434. entry_point: entry
  435. link_script: linkscripts\STM32F746ZE\link.lds
  436. marco: []
  437. files: []
  438. armcc:
  439. entry_point: none
  440. link_script: none
  441. marco: []
  442. files: []
  443. iarcc:
  444. entry_point: none
  445. link_script: none
  446. marco: []
  447. files: []
  448. - chip_name: STM32F746VE
  449. peripheral: {}
  450. memory:
  451. - id: IROM1
  452. start: '0x08000000'
  453. size: '0x80000'
  454. default: '1'
  455. - id: IROM2
  456. start: '0x00200000'
  457. size: '0x80000'
  458. default: '0'
  459. compiler:
  460. gcc:
  461. entry_point: entry
  462. link_script: linkscripts\STM32F746VE\link.lds
  463. marco: []
  464. files: []
  465. armcc:
  466. entry_point: none
  467. link_script: none
  468. marco: []
  469. files: []
  470. iarcc:
  471. entry_point: none
  472. link_script: none
  473. marco: []
  474. files: []
  475. - chip_name: STM32F746IE
  476. peripheral: {}
  477. memory:
  478. - id: IROM1
  479. start: '0x08000000'
  480. size: '0x80000'
  481. default: '1'
  482. - id: IROM2
  483. start: '0x00200000'
  484. size: '0x80000'
  485. default: '0'
  486. compiler:
  487. gcc:
  488. entry_point: entry
  489. link_script: linkscripts\STM32F746IE\link.lds
  490. marco: []
  491. files: []
  492. armcc:
  493. entry_point: none
  494. link_script: none
  495. marco: []
  496. files: []
  497. iarcc:
  498. entry_point: none
  499. link_script: none
  500. marco: []
  501. files: []
  502. - chip_name: STM32F746BE
  503. peripheral: {}
  504. memory:
  505. - id: IROM1
  506. start: '0x08000000'
  507. size: '0x80000'
  508. default: '1'
  509. - id: IROM2
  510. start: '0x00200000'
  511. size: '0x80000'
  512. default: '0'
  513. compiler:
  514. gcc:
  515. entry_point: entry
  516. link_script: linkscripts\STM32F746BE\link.lds
  517. marco: []
  518. files: []
  519. armcc:
  520. entry_point: none
  521. link_script: none
  522. marco: []
  523. files: []
  524. iarcc:
  525. entry_point: none
  526. link_script: none
  527. marco: []
  528. files: []
  529. - chip_name: STM32F746NE
  530. peripheral: {}
  531. memory:
  532. - id: IROM1
  533. start: '0x08000000'
  534. size: '0x80000'
  535. default: '1'
  536. - id: IROM2
  537. start: '0x00200000'
  538. size: '0x80000'
  539. default: '0'
  540. compiler:
  541. gcc:
  542. entry_point: entry
  543. link_script: linkscripts\STM32F746NE\link.lds
  544. marco: []
  545. files: []
  546. armcc:
  547. entry_point: none
  548. link_script: none
  549. marco: []
  550. files: []
  551. iarcc:
  552. entry_point: none
  553. link_script: none
  554. marco: []
  555. files: []
  556. ui:
  557. uart:
  558. default_value: UART1
  559. prompt_message_en: select one uart as console output interface
  560. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  561. tx_pin:
  562. default_value: PA9
  563. prompt_message_en: 'set the tx pin name of the console device interface, the
  564. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  565. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  566. PB6
  567. rx_pin:
  568. default_value: PA10
  569. prompt_message_en: 'set the rx pin name of the console device interface, the
  570. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  571. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  572. docs:
  573. - file: documents\DM00124865.pdf
  574. title: STM32F74xx/5xx Reference Manual
  575. - file: documents\DM00166116.pdf
  576. title: STM32F745/746 Data Sheet
  577. svd:
  578. file: debug\svd\STM32F7x6_v1r1.svd
  579. compiler:
  580. gcc:
  581. entry_point: none
  582. link_script: none
  583. marco:
  584. - STM32F746xx
  585. files:
  586. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f746xx.S
  587. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f746xx.h
  588. - libraries\CMSIS\Lib\GCC
  589. armcc:
  590. entry_point: none
  591. link_script: none
  592. marco: []
  593. files: []
  594. iarcc:
  595. entry_point: none
  596. link_script: none
  597. marco: []
  598. files: []
  599. memory:
  600. - id: IRAM1
  601. start: '0x20010000'
  602. size: '0x40000'
  603. init: '0'
  604. default: '1'
  605. - id: IRAM2
  606. start: '0x20000000'
  607. size: '0x10000'
  608. init: '0'
  609. default: '1'
  610. project_type:
  611. bare_metal:
  612. function_map:
  613. clk_init: none
  614. uart_init: none
  615. putc: none
  616. sysTick: none
  617. marco:
  618. - SOC_FAMILY_STM32
  619. - SOC_SERIES_STM32F7
  620. - USE_HAL_DRIVER
  621. source_files:
  622. - drivers\baremetal
  623. rtt_nano:
  624. function_map:
  625. clk_init: none
  626. uart_init: none
  627. putc: none
  628. getc: none
  629. sysTick: none
  630. heap_init: none
  631. marco:
  632. - SOC_FAMILY_STM32
  633. - SOC_SERIES_STM32F7
  634. - USE_HAL_DRIVER
  635. source_files:
  636. - drivers\nano
  637. rtt:
  638. function_map:
  639. rt_hw_board_init;: none
  640. rt_hw_serial_register: none
  641. rt_hw_pin_register: none
  642. heap_init: none
  643. marco:
  644. - SOC_FAMILY_STM32
  645. - SOC_SERIES_STM32F7
  646. - USE_HAL_DRIVER
  647. source_files:
  648. - drivers\rtt
  649. - sub_series_name: STM32F756
  650. cpu_info:
  651. fpu: SP_FPU
  652. chips:
  653. - chip_name: STM32F756ZG
  654. peripheral: {}
  655. memory:
  656. - id: IROM1
  657. start: '0x08000000'
  658. size: '0x100000'
  659. default: '1'
  660. - id: IROM2
  661. start: '0x00200000'
  662. size: '0x100000'
  663. default: '0'
  664. compiler:
  665. gcc:
  666. entry_point: entry
  667. link_script: linkscripts\STM32F756ZG\link.lds
  668. marco: []
  669. files: []
  670. armcc:
  671. entry_point: none
  672. link_script: none
  673. marco: []
  674. files: []
  675. iarcc:
  676. entry_point: none
  677. link_script: none
  678. marco: []
  679. files: []
  680. - chip_name: STM32F756VG
  681. peripheral: {}
  682. memory:
  683. - id: IROM1
  684. start: '0x08000000'
  685. size: '0x100000'
  686. default: '1'
  687. - id: IROM2
  688. start: '0x00200000'
  689. size: '0x100000'
  690. default: '0'
  691. compiler:
  692. gcc:
  693. entry_point: entry
  694. link_script: linkscripts\STM32F756VG\link.lds
  695. marco: []
  696. files: []
  697. armcc:
  698. entry_point: none
  699. link_script: none
  700. marco: []
  701. files: []
  702. iarcc:
  703. entry_point: none
  704. link_script: none
  705. marco: []
  706. files: []
  707. - chip_name: STM32F756IG
  708. peripheral: {}
  709. memory:
  710. - id: IROM1
  711. start: '0x08000000'
  712. size: '0x100000'
  713. default: '1'
  714. - id: IROM2
  715. start: '0x00200000'
  716. size: '0x100000'
  717. default: '0'
  718. compiler:
  719. gcc:
  720. entry_point: entry
  721. link_script: linkscripts\STM32F756IG\link.lds
  722. marco: []
  723. files: []
  724. armcc:
  725. entry_point: none
  726. link_script: none
  727. marco: []
  728. files: []
  729. iarcc:
  730. entry_point: none
  731. link_script: none
  732. marco: []
  733. files: []
  734. - chip_name: STM32F756BG
  735. peripheral: {}
  736. memory:
  737. - id: IROM1
  738. start: '0x08000000'
  739. size: '0x100000'
  740. default: '1'
  741. - id: IROM2
  742. start: '0x00200000'
  743. size: '0x100000'
  744. default: '0'
  745. compiler:
  746. gcc:
  747. entry_point: entry
  748. link_script: linkscripts\STM32F756BG\link.lds
  749. marco: []
  750. files: []
  751. armcc:
  752. entry_point: none
  753. link_script: none
  754. marco: []
  755. files: []
  756. iarcc:
  757. entry_point: none
  758. link_script: none
  759. marco: []
  760. files: []
  761. - chip_name: STM32F756NG
  762. peripheral: {}
  763. memory:
  764. - id: IROM1
  765. start: '0x08000000'
  766. size: '0x100000'
  767. default: '1'
  768. - id: IROM2
  769. start: '0x00200000'
  770. size: '0x100000'
  771. default: '0'
  772. compiler:
  773. gcc:
  774. entry_point: entry
  775. link_script: linkscripts\STM32F756NG\link.lds
  776. marco: []
  777. files: []
  778. armcc:
  779. entry_point: none
  780. link_script: none
  781. marco: []
  782. files: []
  783. iarcc:
  784. entry_point: none
  785. link_script: none
  786. marco: []
  787. files: []
  788. ui:
  789. uart:
  790. default_value: UART1
  791. prompt_message_en: select one uart as console output interface
  792. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  793. tx_pin:
  794. default_value: PA9
  795. prompt_message_en: 'set the tx pin name of the console device interface, the
  796. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  797. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  798. PB6
  799. rx_pin:
  800. default_value: PA10
  801. prompt_message_en: 'set the rx pin name of the console device interface, the
  802. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  803. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  804. docs:
  805. - file: documents\DM00124865.pdf
  806. title: STM32F74xx/5xx Reference Manual
  807. - file: documents\DM00166114.pdf
  808. title: STM32F756 Data Sheet
  809. svd:
  810. file: debug\svd\STM32F7x6_v1r1.svd
  811. compiler:
  812. gcc:
  813. entry_point: none
  814. link_script: none
  815. marco:
  816. - STM32F756xx
  817. files:
  818. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f756xx.S
  819. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f756xx.h
  820. - libraries\CMSIS\Lib\GCC
  821. armcc:
  822. entry_point: none
  823. link_script: none
  824. marco: []
  825. files: []
  826. iarcc:
  827. entry_point: none
  828. link_script: none
  829. marco: []
  830. files: []
  831. memory:
  832. - id: IRAM1
  833. start: '0x20010000'
  834. size: '0x40000'
  835. init: '0'
  836. default: '1'
  837. - id: IRAM2
  838. start: '0x20000000'
  839. size: '0x10000'
  840. init: '0'
  841. default: '1'
  842. project_type:
  843. bare_metal:
  844. function_map:
  845. clk_init: none
  846. uart_init: none
  847. putc: none
  848. sysTick: none
  849. marco:
  850. - SOC_FAMILY_STM32
  851. - SOC_SERIES_STM32F7
  852. - USE_HAL_DRIVER
  853. source_files:
  854. - drivers\baremetal
  855. rtt_nano:
  856. function_map:
  857. clk_init: none
  858. uart_init: none
  859. putc: none
  860. getc: none
  861. sysTick: none
  862. heap_init: none
  863. marco:
  864. - SOC_FAMILY_STM32
  865. - SOC_SERIES_STM32F7
  866. - USE_HAL_DRIVER
  867. source_files:
  868. - drivers\nano
  869. rtt:
  870. function_map:
  871. rt_hw_board_init;: none
  872. rt_hw_serial_register: none
  873. rt_hw_pin_register: none
  874. heap_init: none
  875. marco:
  876. - SOC_FAMILY_STM32
  877. - SOC_SERIES_STM32F7
  878. - USE_HAL_DRIVER
  879. source_files:
  880. - drivers\rtt
  881. - sub_series_name: STM32F765
  882. cpu_info:
  883. fpu: DP_FPU
  884. chips:
  885. - chip_name: STM32F765BG
  886. peripheral: {}
  887. memory:
  888. - id: IROM1
  889. start: '0x08000000'
  890. size: '0x100000'
  891. default: '1'
  892. - id: IROM2
  893. start: '0x00200000'
  894. size: '0x100000'
  895. default: '0'
  896. compiler:
  897. gcc:
  898. entry_point: entry
  899. link_script: linkscripts\STM32F765BG\link.lds
  900. marco: []
  901. files: []
  902. armcc:
  903. entry_point: none
  904. link_script: none
  905. marco: []
  906. files: []
  907. iarcc:
  908. entry_point: none
  909. link_script: none
  910. marco: []
  911. files: []
  912. - chip_name: STM32F765BI
  913. peripheral: {}
  914. memory:
  915. - id: IROM1
  916. start: '0x08000000'
  917. size: '0x200000'
  918. default: '1'
  919. - id: IROM2
  920. start: '0x00200000'
  921. size: '0x200000'
  922. default: '0'
  923. compiler:
  924. gcc:
  925. entry_point: entry
  926. link_script: linkscripts\STM32F765BI\link.lds
  927. marco: []
  928. files: []
  929. armcc:
  930. entry_point: none
  931. link_script: none
  932. marco: []
  933. files: []
  934. iarcc:
  935. entry_point: none
  936. link_script: none
  937. marco: []
  938. files: []
  939. - chip_name: STM32F765IG
  940. peripheral: {}
  941. memory:
  942. - id: IROM1
  943. start: '0x08000000'
  944. size: '0x100000'
  945. default: '1'
  946. - id: IROM2
  947. start: '0x00200000'
  948. size: '0x100000'
  949. default: '0'
  950. compiler:
  951. gcc:
  952. entry_point: entry
  953. link_script: linkscripts\STM32F765IG\link.lds
  954. marco: []
  955. files: []
  956. armcc:
  957. entry_point: none
  958. link_script: none
  959. marco: []
  960. files: []
  961. iarcc:
  962. entry_point: none
  963. link_script: none
  964. marco: []
  965. files: []
  966. - chip_name: STM32F765II
  967. peripheral: {}
  968. memory:
  969. - id: IROM1
  970. start: '0x08000000'
  971. size: '0x200000'
  972. default: '1'
  973. - id: IROM2
  974. start: '0x00200000'
  975. size: '0x200000'
  976. default: '0'
  977. compiler:
  978. gcc:
  979. entry_point: entry
  980. link_script: linkscripts\STM32F765II\link.lds
  981. marco: []
  982. files: []
  983. armcc:
  984. entry_point: none
  985. link_script: none
  986. marco: []
  987. files: []
  988. iarcc:
  989. entry_point: none
  990. link_script: none
  991. marco: []
  992. files: []
  993. - chip_name: STM32F765NG
  994. peripheral: {}
  995. memory:
  996. - id: IROM1
  997. start: '0x08000000'
  998. size: '0x100000'
  999. default: '1'
  1000. - id: IROM2
  1001. start: '0x00200000'
  1002. size: '0x100000'
  1003. default: '0'
  1004. compiler:
  1005. gcc:
  1006. entry_point: entry
  1007. link_script: linkscripts\STM32F765NG\link.lds
  1008. marco: []
  1009. files: []
  1010. armcc:
  1011. entry_point: none
  1012. link_script: none
  1013. marco: []
  1014. files: []
  1015. iarcc:
  1016. entry_point: none
  1017. link_script: none
  1018. marco: []
  1019. files: []
  1020. - chip_name: STM32F765NI
  1021. peripheral: {}
  1022. memory:
  1023. - id: IROM1
  1024. start: '0x08000000'
  1025. size: '0x200000'
  1026. default: '1'
  1027. - id: IROM2
  1028. start: '0x00200000'
  1029. size: '0x200000'
  1030. default: '0'
  1031. compiler:
  1032. gcc:
  1033. entry_point: entry
  1034. link_script: linkscripts\STM32F765NI\link.lds
  1035. marco: []
  1036. files: []
  1037. armcc:
  1038. entry_point: none
  1039. link_script: none
  1040. marco: []
  1041. files: []
  1042. iarcc:
  1043. entry_point: none
  1044. link_script: none
  1045. marco: []
  1046. files: []
  1047. - chip_name: STM32F765VG
  1048. peripheral: {}
  1049. memory:
  1050. - id: IROM1
  1051. start: '0x08000000'
  1052. size: '0x100000'
  1053. default: '1'
  1054. - id: IROM2
  1055. start: '0x00200000'
  1056. size: '0x100000'
  1057. default: '0'
  1058. compiler:
  1059. gcc:
  1060. entry_point: entry
  1061. link_script: linkscripts\STM32F765VG\link.lds
  1062. marco: []
  1063. files: []
  1064. armcc:
  1065. entry_point: none
  1066. link_script: none
  1067. marco: []
  1068. files: []
  1069. iarcc:
  1070. entry_point: none
  1071. link_script: none
  1072. marco: []
  1073. files: []
  1074. - chip_name: STM32F765VI
  1075. peripheral: {}
  1076. memory:
  1077. - id: IROM1
  1078. start: '0x08000000'
  1079. size: '0x200000'
  1080. default: '1'
  1081. - id: IROM2
  1082. start: '0x00200000'
  1083. size: '0x200000'
  1084. default: '0'
  1085. compiler:
  1086. gcc:
  1087. entry_point: entry
  1088. link_script: linkscripts\STM32F765VI\link.lds
  1089. marco: []
  1090. files: []
  1091. armcc:
  1092. entry_point: none
  1093. link_script: none
  1094. marco: []
  1095. files: []
  1096. iarcc:
  1097. entry_point: none
  1098. link_script: none
  1099. marco: []
  1100. files: []
  1101. - chip_name: STM32F765ZG
  1102. peripheral: {}
  1103. memory:
  1104. - id: IROM1
  1105. start: '0x08000000'
  1106. size: '0x100000'
  1107. default: '1'
  1108. - id: IROM2
  1109. start: '0x00200000'
  1110. size: '0x100000'
  1111. default: '0'
  1112. compiler:
  1113. gcc:
  1114. entry_point: entry
  1115. link_script: linkscripts\STM32F765ZG\link.lds
  1116. marco: []
  1117. files: []
  1118. armcc:
  1119. entry_point: none
  1120. link_script: none
  1121. marco: []
  1122. files: []
  1123. iarcc:
  1124. entry_point: none
  1125. link_script: none
  1126. marco: []
  1127. files: []
  1128. - chip_name: STM32F765ZI
  1129. peripheral: {}
  1130. memory:
  1131. - id: IROM1
  1132. start: '0x08000000'
  1133. size: '0x200000'
  1134. default: '1'
  1135. - id: IROM2
  1136. start: '0x00200000'
  1137. size: '0x200000'
  1138. default: '0'
  1139. compiler:
  1140. gcc:
  1141. entry_point: entry
  1142. link_script: linkscripts\STM32F765ZI\link.lds
  1143. marco: []
  1144. files: []
  1145. armcc:
  1146. entry_point: none
  1147. link_script: none
  1148. marco: []
  1149. files: []
  1150. iarcc:
  1151. entry_point: none
  1152. link_script: none
  1153. marco: []
  1154. files: []
  1155. ui:
  1156. uart:
  1157. default_value: UART1
  1158. prompt_message_en: select one uart as console output interface
  1159. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  1160. tx_pin:
  1161. default_value: PA9
  1162. prompt_message_en: 'set the tx pin name of the console device interface, the
  1163. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  1164. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  1165. PB6
  1166. rx_pin:
  1167. default_value: PA10
  1168. prompt_message_en: 'set the rx pin name of the console device interface, the
  1169. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  1170. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  1171. docs:
  1172. - file: documents\DM00224583.pdf
  1173. title: STM32F76xxx/7xxx Reference Manual
  1174. - file: documents\DM00273119.pdf
  1175. title: STM32F765/767/768A/769 Data Sheet
  1176. svd:
  1177. file: debug\svd\STM32F7x5_v1r1.svd
  1178. compiler:
  1179. gcc:
  1180. entry_point: none
  1181. link_script: none
  1182. marco:
  1183. - STM32F765xx
  1184. files:
  1185. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f765xx.S
  1186. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f765xx.h
  1187. - libraries\CMSIS\Lib\GCC
  1188. armcc:
  1189. entry_point: none
  1190. link_script: none
  1191. marco: []
  1192. files: []
  1193. iarcc:
  1194. entry_point: none
  1195. link_script: none
  1196. marco: []
  1197. files: []
  1198. memory:
  1199. - id: IRAM1
  1200. start: '0x20020000'
  1201. size: '0x60000'
  1202. init: '0'
  1203. default: '1'
  1204. - id: IRAM2
  1205. start: '0x20000000'
  1206. size: '0x20000'
  1207. init: '0'
  1208. default: '1'
  1209. project_type:
  1210. bare_metal:
  1211. function_map:
  1212. clk_init: none
  1213. uart_init: none
  1214. putc: none
  1215. sysTick: none
  1216. marco:
  1217. - SOC_FAMILY_STM32
  1218. - SOC_SERIES_STM32F7
  1219. - USE_HAL_DRIVER
  1220. source_files:
  1221. - drivers\baremetal
  1222. rtt_nano:
  1223. function_map:
  1224. clk_init: none
  1225. uart_init: none
  1226. putc: none
  1227. getc: none
  1228. sysTick: none
  1229. heap_init: none
  1230. marco:
  1231. - SOC_FAMILY_STM32
  1232. - SOC_SERIES_STM32F7
  1233. - USE_HAL_DRIVER
  1234. source_files:
  1235. - drivers\nano
  1236. rtt:
  1237. function_map:
  1238. rt_hw_board_init;: none
  1239. rt_hw_serial_register: none
  1240. rt_hw_pin_register: none
  1241. heap_init: none
  1242. marco:
  1243. - SOC_FAMILY_STM32
  1244. - SOC_SERIES_STM32F7
  1245. - USE_HAL_DRIVER
  1246. source_files:
  1247. - drivers\rtt
  1248. - sub_series_name: STM32F767
  1249. cpu_info:
  1250. fpu: DP_FPU
  1251. chips:
  1252. - chip_name: STM32F767BI
  1253. peripheral: {}
  1254. memory:
  1255. - id: IROM1
  1256. start: '0x08000000'
  1257. size: '0x200000'
  1258. default: '1'
  1259. - id: IROM2
  1260. start: '0x00200000'
  1261. size: '0x200000'
  1262. default: '0'
  1263. compiler:
  1264. gcc:
  1265. entry_point: entry
  1266. link_script: linkscripts\STM32F767BI\link.lds
  1267. marco: []
  1268. files: []
  1269. armcc:
  1270. entry_point: none
  1271. link_script: none
  1272. marco: []
  1273. files: []
  1274. iarcc:
  1275. entry_point: none
  1276. link_script: none
  1277. marco: []
  1278. files: []
  1279. - chip_name: STM32F767BG
  1280. peripheral: {}
  1281. memory:
  1282. - id: IROM1
  1283. start: '0x08000000'
  1284. size: '0x100000'
  1285. default: '1'
  1286. - id: IROM2
  1287. start: '0x00200000'
  1288. size: '0x100000'
  1289. default: '0'
  1290. compiler:
  1291. gcc:
  1292. entry_point: entry
  1293. link_script: linkscripts\STM32F767BG\link.lds
  1294. marco: []
  1295. files: []
  1296. armcc:
  1297. entry_point: none
  1298. link_script: none
  1299. marco: []
  1300. files: []
  1301. iarcc:
  1302. entry_point: none
  1303. link_script: none
  1304. marco: []
  1305. files: []
  1306. - chip_name: STM32F767NI
  1307. peripheral: {}
  1308. memory:
  1309. - id: IROM1
  1310. start: '0x08000000'
  1311. size: '0x200000'
  1312. default: '1'
  1313. - id: IROM2
  1314. start: '0x00200000'
  1315. size: '0x200000'
  1316. default: '0'
  1317. compiler:
  1318. gcc:
  1319. entry_point: entry
  1320. link_script: linkscripts\STM32F767NI\link.lds
  1321. marco: []
  1322. files: []
  1323. armcc:
  1324. entry_point: none
  1325. link_script: none
  1326. marco: []
  1327. files: []
  1328. iarcc:
  1329. entry_point: none
  1330. link_script: none
  1331. marco: []
  1332. files: []
  1333. - chip_name: STM32F767NG
  1334. peripheral: {}
  1335. memory:
  1336. - id: IROM1
  1337. start: '0x08000000'
  1338. size: '0x100000'
  1339. default: '1'
  1340. - id: IROM2
  1341. start: '0x00200000'
  1342. size: '0x100000'
  1343. default: '0'
  1344. compiler:
  1345. gcc:
  1346. entry_point: entry
  1347. link_script: linkscripts\STM32F767NG\link.lds
  1348. marco: []
  1349. files: []
  1350. armcc:
  1351. entry_point: none
  1352. link_script: none
  1353. marco: []
  1354. files: []
  1355. iarcc:
  1356. entry_point: none
  1357. link_script: none
  1358. marco: []
  1359. files: []
  1360. - chip_name: STM32F767II
  1361. peripheral: {}
  1362. memory:
  1363. - id: IROM1
  1364. start: '0x08000000'
  1365. size: '0x200000'
  1366. default: '1'
  1367. - id: IROM2
  1368. start: '0x00200000'
  1369. size: '0x200000'
  1370. default: '0'
  1371. compiler:
  1372. gcc:
  1373. entry_point: entry
  1374. link_script: linkscripts\STM32F767II\link.lds
  1375. marco: []
  1376. files: []
  1377. armcc:
  1378. entry_point: none
  1379. link_script: none
  1380. marco: []
  1381. files: []
  1382. iarcc:
  1383. entry_point: none
  1384. link_script: none
  1385. marco: []
  1386. files: []
  1387. - chip_name: STM32F767IG
  1388. peripheral: {}
  1389. memory:
  1390. - id: IROM1
  1391. start: '0x08000000'
  1392. size: '0x100000'
  1393. default: '1'
  1394. - id: IROM2
  1395. start: '0x00200000'
  1396. size: '0x100000'
  1397. default: '0'
  1398. compiler:
  1399. gcc:
  1400. entry_point: entry
  1401. link_script: linkscripts\STM32F767IG\link.lds
  1402. marco: []
  1403. files: []
  1404. armcc:
  1405. entry_point: none
  1406. link_script: none
  1407. marco: []
  1408. files: []
  1409. iarcc:
  1410. entry_point: none
  1411. link_script: none
  1412. marco: []
  1413. files: []
  1414. - chip_name: STM32F767ZI
  1415. peripheral: {}
  1416. memory:
  1417. - id: IROM1
  1418. start: '0x08000000'
  1419. size: '0x200000'
  1420. default: '1'
  1421. - id: IROM2
  1422. start: '0x00200000'
  1423. size: '0x200000'
  1424. default: '0'
  1425. compiler:
  1426. gcc:
  1427. entry_point: entry
  1428. link_script: linkscripts\STM32F767ZI\link.lds
  1429. marco: []
  1430. files: []
  1431. armcc:
  1432. entry_point: none
  1433. link_script: none
  1434. marco: []
  1435. files: []
  1436. iarcc:
  1437. entry_point: none
  1438. link_script: none
  1439. marco: []
  1440. files: []
  1441. - chip_name: STM32F767ZG
  1442. peripheral: {}
  1443. memory:
  1444. - id: IROM1
  1445. start: '0x08000000'
  1446. size: '0x100000'
  1447. default: '1'
  1448. - id: IROM2
  1449. start: '0x00200000'
  1450. size: '0x100000'
  1451. default: '0'
  1452. compiler:
  1453. gcc:
  1454. entry_point: entry
  1455. link_script: linkscripts\STM32F767ZG\link.lds
  1456. marco: []
  1457. files: []
  1458. armcc:
  1459. entry_point: none
  1460. link_script: none
  1461. marco: []
  1462. files: []
  1463. iarcc:
  1464. entry_point: none
  1465. link_script: none
  1466. marco: []
  1467. files: []
  1468. - chip_name: STM32F767VI
  1469. peripheral: {}
  1470. memory:
  1471. - id: IROM1
  1472. start: '0x08000000'
  1473. size: '0x200000'
  1474. default: '1'
  1475. - id: IROM2
  1476. start: '0x00200000'
  1477. size: '0x200000'
  1478. default: '0'
  1479. compiler:
  1480. gcc:
  1481. entry_point: entry
  1482. link_script: linkscripts\STM32F767VI\link.lds
  1483. marco: []
  1484. files: []
  1485. armcc:
  1486. entry_point: none
  1487. link_script: none
  1488. marco: []
  1489. files: []
  1490. iarcc:
  1491. entry_point: none
  1492. link_script: none
  1493. marco: []
  1494. files: []
  1495. - chip_name: STM32F767VG
  1496. peripheral: {}
  1497. memory:
  1498. - id: IROM1
  1499. start: '0x08000000'
  1500. size: '0x100000'
  1501. default: '1'
  1502. - id: IROM2
  1503. start: '0x00200000'
  1504. size: '0x100000'
  1505. default: '0'
  1506. compiler:
  1507. gcc:
  1508. entry_point: entry
  1509. link_script: linkscripts\STM32F767VG\link.lds
  1510. marco: []
  1511. files: []
  1512. armcc:
  1513. entry_point: none
  1514. link_script: none
  1515. marco: []
  1516. files: []
  1517. iarcc:
  1518. entry_point: none
  1519. link_script: none
  1520. marco: []
  1521. files: []
  1522. ui:
  1523. uart:
  1524. default_value: UART1
  1525. prompt_message_en: select one uart as console output interface
  1526. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  1527. tx_pin:
  1528. default_value: PA9
  1529. prompt_message_en: 'set the tx pin name of the console device interface, the
  1530. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  1531. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  1532. PB6
  1533. rx_pin:
  1534. default_value: PA10
  1535. prompt_message_en: 'set the rx pin name of the console device interface, the
  1536. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  1537. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  1538. docs:
  1539. - file: documents\DM00224583.pdf
  1540. title: STM32F76xxx/7xxx Reference Manual
  1541. - file: documents\DM00273119.pdf
  1542. title: STM32F765/767/768A/769 Data Sheet
  1543. svd:
  1544. file: debug\svd\STM32F7x7_v1r2.svd
  1545. compiler:
  1546. gcc:
  1547. entry_point: none
  1548. link_script: none
  1549. marco:
  1550. - STM32F767xx
  1551. files:
  1552. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f767xx.S
  1553. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f767xx.h
  1554. - libraries\CMSIS\Lib\GCC
  1555. armcc:
  1556. entry_point: none
  1557. link_script: none
  1558. marco: []
  1559. files: []
  1560. iarcc:
  1561. entry_point: none
  1562. link_script: none
  1563. marco: []
  1564. files: []
  1565. memory:
  1566. - id: IRAM1
  1567. start: '0x20020000'
  1568. size: '0x60000'
  1569. init: '0'
  1570. default: '1'
  1571. - id: IRAM2
  1572. start: '0x20000000'
  1573. size: '0x20000'
  1574. init: '0'
  1575. default: '1'
  1576. project_type:
  1577. bare_metal:
  1578. function_map:
  1579. clk_init: none
  1580. uart_init: none
  1581. putc: none
  1582. sysTick: none
  1583. marco:
  1584. - SOC_FAMILY_STM32
  1585. - SOC_SERIES_STM32F7
  1586. - USE_HAL_DRIVER
  1587. source_files:
  1588. - drivers\baremetal
  1589. rtt_nano:
  1590. function_map:
  1591. clk_init: none
  1592. uart_init: none
  1593. putc: none
  1594. getc: none
  1595. sysTick: none
  1596. heap_init: none
  1597. marco:
  1598. - SOC_FAMILY_STM32
  1599. - SOC_SERIES_STM32F7
  1600. - USE_HAL_DRIVER
  1601. source_files:
  1602. - drivers\nano
  1603. rtt:
  1604. function_map:
  1605. rt_hw_board_init;: none
  1606. rt_hw_serial_register: none
  1607. rt_hw_pin_register: none
  1608. heap_init: none
  1609. marco:
  1610. - SOC_FAMILY_STM32
  1611. - SOC_SERIES_STM32F7
  1612. - USE_HAL_DRIVER
  1613. source_files:
  1614. - drivers\rtt
  1615. - sub_series_name: STM32F768
  1616. cpu_info:
  1617. fpu: DP_FPU
  1618. chips:
  1619. - chip_name: STM32F768AI
  1620. peripheral: {}
  1621. memory:
  1622. - id: IROM1
  1623. start: '0x08000000'
  1624. size: '0x200000'
  1625. default: '1'
  1626. - id: IROM2
  1627. start: '0x00200000'
  1628. size: '0x200000'
  1629. default: '0'
  1630. compiler:
  1631. gcc:
  1632. entry_point: entry
  1633. link_script: linkscripts\STM32F768AI\link.lds
  1634. marco: []
  1635. files: []
  1636. armcc:
  1637. entry_point: none
  1638. link_script: none
  1639. marco: []
  1640. files: []
  1641. iarcc:
  1642. entry_point: none
  1643. link_script: none
  1644. marco: []
  1645. files: []
  1646. ui:
  1647. uart:
  1648. default_value: UART1
  1649. prompt_message_en: select one uart as console output interface
  1650. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  1651. tx_pin:
  1652. default_value: PA9
  1653. prompt_message_en: 'set the tx pin name of the console device interface, the
  1654. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  1655. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  1656. PB6
  1657. rx_pin:
  1658. default_value: PA10
  1659. prompt_message_en: 'set the rx pin name of the console device interface, the
  1660. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  1661. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  1662. docs:
  1663. - file: documents\DM00224583.pdf
  1664. title: STM32F76xxx/7xxx Reference Manual
  1665. - file: documents\DM00273119.pdf
  1666. title: STM32F765/767/768A/769 Data Sheet
  1667. svd:
  1668. file: debug\svd\STM32F7x9_v1r2.svd
  1669. compiler:
  1670. gcc:
  1671. entry_point: none
  1672. link_script: none
  1673. marco:
  1674. - STM32F767xx
  1675. files:
  1676. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f767xx.S
  1677. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f767xx.h
  1678. - libraries\CMSIS\Lib\GCC
  1679. armcc:
  1680. entry_point: none
  1681. link_script: none
  1682. marco: []
  1683. files: []
  1684. iarcc:
  1685. entry_point: none
  1686. link_script: none
  1687. marco: []
  1688. files: []
  1689. memory:
  1690. - id: IRAM1
  1691. start: '0x20020000'
  1692. size: '0x60000'
  1693. init: '0'
  1694. default: '1'
  1695. - id: IRAM2
  1696. start: '0x20000000'
  1697. size: '0x20000'
  1698. init: '0'
  1699. default: '1'
  1700. project_type:
  1701. bare_metal:
  1702. function_map:
  1703. clk_init: none
  1704. uart_init: none
  1705. putc: none
  1706. sysTick: none
  1707. marco:
  1708. - SOC_FAMILY_STM32
  1709. - SOC_SERIES_STM32F7
  1710. - USE_HAL_DRIVER
  1711. source_files:
  1712. - drivers\baremetal
  1713. rtt_nano:
  1714. function_map:
  1715. clk_init: none
  1716. uart_init: none
  1717. putc: none
  1718. getc: none
  1719. sysTick: none
  1720. heap_init: none
  1721. marco:
  1722. - SOC_FAMILY_STM32
  1723. - SOC_SERIES_STM32F7
  1724. - USE_HAL_DRIVER
  1725. source_files:
  1726. - drivers\nano
  1727. rtt:
  1728. function_map:
  1729. rt_hw_board_init;: none
  1730. rt_hw_serial_register: none
  1731. rt_hw_pin_register: none
  1732. heap_init: none
  1733. marco:
  1734. - SOC_FAMILY_STM32
  1735. - SOC_SERIES_STM32F7
  1736. - USE_HAL_DRIVER
  1737. source_files:
  1738. - drivers\rtt
  1739. - sub_series_name: STM32F769
  1740. cpu_info:
  1741. fpu: DP_FPU
  1742. chips:
  1743. - chip_name: STM32F769BI
  1744. peripheral: {}
  1745. memory:
  1746. - id: IROM1
  1747. start: '0x08000000'
  1748. size: '0x200000'
  1749. default: '1'
  1750. - id: IROM2
  1751. start: '0x00200000'
  1752. size: '0x200000'
  1753. default: '0'
  1754. compiler:
  1755. gcc:
  1756. entry_point: entry
  1757. link_script: linkscripts\STM32F769BI\link.lds
  1758. marco: []
  1759. files: []
  1760. armcc:
  1761. entry_point: none
  1762. link_script: none
  1763. marco: []
  1764. files: []
  1765. iarcc:
  1766. entry_point: none
  1767. link_script: none
  1768. marco: []
  1769. files: []
  1770. - chip_name: STM32F769BG
  1771. peripheral: {}
  1772. memory:
  1773. - id: IROM1
  1774. start: '0x08000000'
  1775. size: '0x100000'
  1776. default: '1'
  1777. - id: IROM2
  1778. start: '0x00200000'
  1779. size: '0x100000'
  1780. default: '0'
  1781. compiler:
  1782. gcc:
  1783. entry_point: entry
  1784. link_script: linkscripts\STM32F769BG\link.lds
  1785. marco: []
  1786. files: []
  1787. armcc:
  1788. entry_point: none
  1789. link_script: none
  1790. marco: []
  1791. files: []
  1792. iarcc:
  1793. entry_point: none
  1794. link_script: none
  1795. marco: []
  1796. files: []
  1797. - chip_name: STM32F769NI
  1798. peripheral: {}
  1799. memory:
  1800. - id: IROM1
  1801. start: '0x08000000'
  1802. size: '0x200000'
  1803. default: '1'
  1804. - id: IROM2
  1805. start: '0x00200000'
  1806. size: '0x200000'
  1807. default: '0'
  1808. compiler:
  1809. gcc:
  1810. entry_point: entry
  1811. link_script: linkscripts\STM32F769NI\link.lds
  1812. marco: []
  1813. files: []
  1814. armcc:
  1815. entry_point: none
  1816. link_script: none
  1817. marco: []
  1818. files: []
  1819. iarcc:
  1820. entry_point: none
  1821. link_script: none
  1822. marco: []
  1823. files: []
  1824. - chip_name: STM32F769NG
  1825. peripheral: {}
  1826. memory:
  1827. - id: IROM1
  1828. start: '0x08000000'
  1829. size: '0x100000'
  1830. default: '1'
  1831. - id: IROM2
  1832. start: '0x00200000'
  1833. size: '0x100000'
  1834. default: '0'
  1835. compiler:
  1836. gcc:
  1837. entry_point: entry
  1838. link_script: linkscripts\STM32F769NG\link.lds
  1839. marco: []
  1840. files: []
  1841. armcc:
  1842. entry_point: none
  1843. link_script: none
  1844. marco: []
  1845. files: []
  1846. iarcc:
  1847. entry_point: none
  1848. link_script: none
  1849. marco: []
  1850. files: []
  1851. - chip_name: STM32F769II
  1852. peripheral: {}
  1853. memory:
  1854. - id: IROM1
  1855. start: '0x08000000'
  1856. size: '0x200000'
  1857. default: '1'
  1858. - id: IROM2
  1859. start: '0x00200000'
  1860. size: '0x200000'
  1861. default: '0'
  1862. compiler:
  1863. gcc:
  1864. entry_point: entry
  1865. link_script: linkscripts\STM32F769II\link.lds
  1866. marco: []
  1867. files: []
  1868. armcc:
  1869. entry_point: none
  1870. link_script: none
  1871. marco: []
  1872. files: []
  1873. iarcc:
  1874. entry_point: none
  1875. link_script: none
  1876. marco: []
  1877. files: []
  1878. - chip_name: STM32F769IG
  1879. peripheral: {}
  1880. memory:
  1881. - id: IROM1
  1882. start: '0x08000000'
  1883. size: '0x100000'
  1884. default: '1'
  1885. - id: IROM2
  1886. start: '0x00200000'
  1887. size: '0x100000'
  1888. default: '0'
  1889. compiler:
  1890. gcc:
  1891. entry_point: entry
  1892. link_script: linkscripts\STM32F769IG\link.lds
  1893. marco: []
  1894. files: []
  1895. armcc:
  1896. entry_point: none
  1897. link_script: none
  1898. marco: []
  1899. files: []
  1900. iarcc:
  1901. entry_point: none
  1902. link_script: none
  1903. marco: []
  1904. files: []
  1905. - chip_name: STM32F769AI
  1906. peripheral: {}
  1907. memory:
  1908. - id: IROM1
  1909. start: '0x08000000'
  1910. size: '0x200000'
  1911. default: '1'
  1912. - id: IROM2
  1913. start: '0x00200000'
  1914. size: '0x200000'
  1915. default: '0'
  1916. compiler:
  1917. gcc:
  1918. entry_point: entry
  1919. link_script: linkscripts\STM32F769AI\link.lds
  1920. marco: []
  1921. files: []
  1922. armcc:
  1923. entry_point: none
  1924. link_script: none
  1925. marco: []
  1926. files: []
  1927. iarcc:
  1928. entry_point: none
  1929. link_script: none
  1930. marco: []
  1931. files: []
  1932. - chip_name: STM32F769AG
  1933. peripheral: {}
  1934. memory:
  1935. - id: IROM1
  1936. start: '0x08000000'
  1937. size: '0x100000'
  1938. default: '1'
  1939. - id: IROM2
  1940. start: '0x00200000'
  1941. size: '0x100000'
  1942. default: '0'
  1943. compiler:
  1944. gcc:
  1945. entry_point: entry
  1946. link_script: linkscripts\STM32F769AG\link.lds
  1947. marco: []
  1948. files: []
  1949. armcc:
  1950. entry_point: none
  1951. link_script: none
  1952. marco: []
  1953. files: []
  1954. iarcc:
  1955. entry_point: none
  1956. link_script: none
  1957. marco: []
  1958. files: []
  1959. ui:
  1960. uart:
  1961. default_value: UART1
  1962. prompt_message_en: select one uart as console output interface
  1963. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  1964. tx_pin:
  1965. default_value: PA9
  1966. prompt_message_en: 'set the tx pin name of the console device interface, the
  1967. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  1968. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  1969. PB6
  1970. rx_pin:
  1971. default_value: PA10
  1972. prompt_message_en: 'set the rx pin name of the console device interface, the
  1973. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  1974. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  1975. docs:
  1976. - file: documents\DM00224583.pdf
  1977. title: STM32F76xxx/7xxx Reference Manual
  1978. - file: documents\DM00273119.pdf
  1979. title: STM32F765/767/768A/769 Data Sheet
  1980. svd:
  1981. file: debug\svd\STM32F7x9_v1r2.svd
  1982. compiler:
  1983. gcc:
  1984. entry_point: none
  1985. link_script: none
  1986. marco:
  1987. - STM32F769xx
  1988. files:
  1989. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f769xx.S
  1990. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f769xx.h
  1991. - libraries\CMSIS\Lib\GCC
  1992. armcc:
  1993. entry_point: none
  1994. link_script: none
  1995. marco: []
  1996. files: []
  1997. iarcc:
  1998. entry_point: none
  1999. link_script: none
  2000. marco: []
  2001. files: []
  2002. memory:
  2003. - id: IRAM1
  2004. start: '0x20020000'
  2005. size: '0x60000'
  2006. init: '0'
  2007. default: '1'
  2008. - id: IRAM2
  2009. start: '0x20000000'
  2010. size: '0x20000'
  2011. init: '0'
  2012. default: '1'
  2013. project_type:
  2014. bare_metal:
  2015. function_map:
  2016. clk_init: none
  2017. uart_init: none
  2018. putc: none
  2019. sysTick: none
  2020. marco:
  2021. - SOC_FAMILY_STM32
  2022. - SOC_SERIES_STM32F7
  2023. - USE_HAL_DRIVER
  2024. source_files:
  2025. - drivers\baremetal
  2026. rtt_nano:
  2027. function_map:
  2028. clk_init: none
  2029. uart_init: none
  2030. putc: none
  2031. getc: none
  2032. sysTick: none
  2033. heap_init: none
  2034. marco:
  2035. - SOC_FAMILY_STM32
  2036. - SOC_SERIES_STM32F7
  2037. - USE_HAL_DRIVER
  2038. source_files:
  2039. - drivers\nano
  2040. rtt:
  2041. function_map:
  2042. rt_hw_board_init;: none
  2043. rt_hw_serial_register: none
  2044. rt_hw_pin_register: none
  2045. heap_init: none
  2046. marco:
  2047. - SOC_FAMILY_STM32
  2048. - SOC_SERIES_STM32F7
  2049. - USE_HAL_DRIVER
  2050. source_files:
  2051. - drivers\rtt
  2052. - sub_series_name: STM32F777
  2053. cpu_info:
  2054. fpu: DP_FPU
  2055. chips:
  2056. - chip_name: STM32F777BI
  2057. peripheral: {}
  2058. memory:
  2059. - id: IROM1
  2060. start: '0x08000000'
  2061. size: '0x200000'
  2062. default: '1'
  2063. - id: IROM2
  2064. start: '0x00200000'
  2065. size: '0x200000'
  2066. default: '0'
  2067. compiler:
  2068. gcc:
  2069. entry_point: entry
  2070. link_script: linkscripts\STM32F777BI\link.lds
  2071. marco: []
  2072. files: []
  2073. armcc:
  2074. entry_point: none
  2075. link_script: none
  2076. marco: []
  2077. files: []
  2078. iarcc:
  2079. entry_point: none
  2080. link_script: none
  2081. marco: []
  2082. files: []
  2083. - chip_name: STM32F777NI
  2084. peripheral: {}
  2085. memory:
  2086. - id: IROM1
  2087. start: '0x08000000'
  2088. size: '0x200000'
  2089. default: '1'
  2090. - id: IROM2
  2091. start: '0x00200000'
  2092. size: '0x200000'
  2093. default: '0'
  2094. compiler:
  2095. gcc:
  2096. entry_point: entry
  2097. link_script: linkscripts\STM32F777NI\link.lds
  2098. marco: []
  2099. files: []
  2100. armcc:
  2101. entry_point: none
  2102. link_script: none
  2103. marco: []
  2104. files: []
  2105. iarcc:
  2106. entry_point: none
  2107. link_script: none
  2108. marco: []
  2109. files: []
  2110. - chip_name: STM32F777II
  2111. peripheral: {}
  2112. memory:
  2113. - id: IROM1
  2114. start: '0x08000000'
  2115. size: '0x200000'
  2116. default: '1'
  2117. - id: IROM2
  2118. start: '0x00200000'
  2119. size: '0x200000'
  2120. default: '0'
  2121. compiler:
  2122. gcc:
  2123. entry_point: entry
  2124. link_script: linkscripts\STM32F777II\link.lds
  2125. marco: []
  2126. files: []
  2127. armcc:
  2128. entry_point: none
  2129. link_script: none
  2130. marco: []
  2131. files: []
  2132. iarcc:
  2133. entry_point: none
  2134. link_script: none
  2135. marco: []
  2136. files: []
  2137. - chip_name: STM32F777ZI
  2138. peripheral: {}
  2139. memory:
  2140. - id: IROM1
  2141. start: '0x08000000'
  2142. size: '0x200000'
  2143. default: '1'
  2144. - id: IROM2
  2145. start: '0x00200000'
  2146. size: '0x200000'
  2147. default: '0'
  2148. compiler:
  2149. gcc:
  2150. entry_point: entry
  2151. link_script: linkscripts\STM32F777ZI\link.lds
  2152. marco: []
  2153. files: []
  2154. armcc:
  2155. entry_point: none
  2156. link_script: none
  2157. marco: []
  2158. files: []
  2159. iarcc:
  2160. entry_point: none
  2161. link_script: none
  2162. marco: []
  2163. files: []
  2164. - chip_name: STM32F777VI
  2165. peripheral: {}
  2166. memory:
  2167. - id: IROM1
  2168. start: '0x08000000'
  2169. size: '0x200000'
  2170. default: '1'
  2171. - id: IROM2
  2172. start: '0x00200000'
  2173. size: '0x200000'
  2174. default: '0'
  2175. compiler:
  2176. gcc:
  2177. entry_point: entry
  2178. link_script: linkscripts\STM32F777VI\link.lds
  2179. marco: []
  2180. files: []
  2181. armcc:
  2182. entry_point: none
  2183. link_script: none
  2184. marco: []
  2185. files: []
  2186. iarcc:
  2187. entry_point: none
  2188. link_script: none
  2189. marco: []
  2190. files: []
  2191. ui:
  2192. uart:
  2193. default_value: UART1
  2194. prompt_message_en: select one uart as console output interface
  2195. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  2196. tx_pin:
  2197. default_value: PA9
  2198. prompt_message_en: 'set the tx pin name of the console device interface, the
  2199. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  2200. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  2201. PB6
  2202. rx_pin:
  2203. default_value: PA10
  2204. prompt_message_en: 'set the rx pin name of the console device interface, the
  2205. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  2206. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  2207. docs:
  2208. - file: documents\DM00224583.pdf
  2209. title: STM32F76xxx/7xxx Reference Manual
  2210. - file: documents\DM00225424.pdf
  2211. title: STM32F777/778A/779 Data Sheet
  2212. svd:
  2213. file: debug\svd\STM32F7x7_v1r2.svd
  2214. compiler:
  2215. gcc:
  2216. entry_point: none
  2217. link_script: none
  2218. marco:
  2219. - STM32F777xx
  2220. files:
  2221. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f777xx.S
  2222. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f777xx.h
  2223. - libraries\CMSIS\Lib\GCC
  2224. armcc:
  2225. entry_point: none
  2226. link_script: none
  2227. marco: []
  2228. files: []
  2229. iarcc:
  2230. entry_point: none
  2231. link_script: none
  2232. marco: []
  2233. files: []
  2234. memory:
  2235. - id: IRAM1
  2236. start: '0x20020000'
  2237. size: '0x60000'
  2238. init: '0'
  2239. default: '1'
  2240. - id: IRAM2
  2241. start: '0x20000000'
  2242. size: '0x20000'
  2243. init: '0'
  2244. default: '1'
  2245. project_type:
  2246. bare_metal:
  2247. function_map:
  2248. clk_init: none
  2249. uart_init: none
  2250. putc: none
  2251. sysTick: none
  2252. marco:
  2253. - SOC_FAMILY_STM32
  2254. - SOC_SERIES_STM32F7
  2255. - USE_HAL_DRIVER
  2256. source_files:
  2257. - drivers\baremetal
  2258. rtt_nano:
  2259. function_map:
  2260. clk_init: none
  2261. uart_init: none
  2262. putc: none
  2263. getc: none
  2264. sysTick: none
  2265. heap_init: none
  2266. marco:
  2267. - SOC_FAMILY_STM32
  2268. - SOC_SERIES_STM32F7
  2269. - USE_HAL_DRIVER
  2270. source_files:
  2271. - drivers\nano
  2272. rtt:
  2273. function_map:
  2274. rt_hw_board_init;: none
  2275. rt_hw_serial_register: none
  2276. rt_hw_pin_register: none
  2277. heap_init: none
  2278. marco:
  2279. - SOC_FAMILY_STM32
  2280. - SOC_SERIES_STM32F7
  2281. - USE_HAL_DRIVER
  2282. source_files:
  2283. - drivers\rtt
  2284. - sub_series_name: STM32F778
  2285. cpu_info:
  2286. fpu: DP_FPU
  2287. chips:
  2288. - chip_name: STM32F778AI
  2289. peripheral: {}
  2290. memory:
  2291. - id: IROM1
  2292. start: '0x08000000'
  2293. size: '0x200000'
  2294. default: '1'
  2295. - id: IROM2
  2296. start: '0x00200000'
  2297. size: '0x200000'
  2298. default: '0'
  2299. compiler:
  2300. gcc:
  2301. entry_point: entry
  2302. link_script: linkscripts\STM32F778AI\link.lds
  2303. marco: []
  2304. files: []
  2305. armcc:
  2306. entry_point: none
  2307. link_script: none
  2308. marco: []
  2309. files: []
  2310. iarcc:
  2311. entry_point: none
  2312. link_script: none
  2313. marco: []
  2314. files: []
  2315. ui:
  2316. uart:
  2317. default_value: UART1
  2318. prompt_message_en: select one uart as console output interface
  2319. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  2320. tx_pin:
  2321. default_value: PA9
  2322. prompt_message_en: 'set the tx pin name of the console device interface, the
  2323. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  2324. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  2325. PB6
  2326. rx_pin:
  2327. default_value: PA10
  2328. prompt_message_en: 'set the rx pin name of the console device interface, the
  2329. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  2330. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  2331. docs:
  2332. - file: documents\DM00224583.pdf
  2333. title: STM32F76xxx/7xxx Reference Manual
  2334. - file: documents\DM00225424.pdf
  2335. title: STM32F777/778A/779 Data Sheet
  2336. svd:
  2337. file: debug\svd\STM32F7x9_v1r2.svd
  2338. compiler:
  2339. gcc:
  2340. entry_point: none
  2341. link_script: none
  2342. marco:
  2343. - STM32F777xx
  2344. files:
  2345. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f777xx.S
  2346. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f777xx.h
  2347. - libraries\CMSIS\Lib\GCC
  2348. armcc:
  2349. entry_point: none
  2350. link_script: none
  2351. marco: []
  2352. files: []
  2353. iarcc:
  2354. entry_point: none
  2355. link_script: none
  2356. marco: []
  2357. files: []
  2358. memory:
  2359. - id: IRAM1
  2360. start: '0x20020000'
  2361. size: '0x60000'
  2362. init: '0'
  2363. default: '1'
  2364. - id: IRAM2
  2365. start: '0x20000000'
  2366. size: '0x20000'
  2367. init: '0'
  2368. default: '1'
  2369. project_type:
  2370. bare_metal:
  2371. function_map:
  2372. clk_init: none
  2373. uart_init: none
  2374. putc: none
  2375. sysTick: none
  2376. marco:
  2377. - SOC_FAMILY_STM32
  2378. - SOC_SERIES_STM32F7
  2379. - USE_HAL_DRIVER
  2380. source_files:
  2381. - drivers\baremetal
  2382. rtt_nano:
  2383. function_map:
  2384. clk_init: none
  2385. uart_init: none
  2386. putc: none
  2387. getc: none
  2388. sysTick: none
  2389. heap_init: none
  2390. marco:
  2391. - SOC_FAMILY_STM32
  2392. - SOC_SERIES_STM32F7
  2393. - USE_HAL_DRIVER
  2394. source_files:
  2395. - drivers\nano
  2396. rtt:
  2397. function_map:
  2398. rt_hw_board_init;: none
  2399. rt_hw_serial_register: none
  2400. rt_hw_pin_register: none
  2401. heap_init: none
  2402. marco:
  2403. - SOC_FAMILY_STM32
  2404. - SOC_SERIES_STM32F7
  2405. - USE_HAL_DRIVER
  2406. source_files:
  2407. - drivers\rtt
  2408. - sub_series_name: STM32F779
  2409. cpu_info:
  2410. fpu: DP_FPU
  2411. chips:
  2412. - chip_name: STM32F779BI
  2413. peripheral: {}
  2414. memory:
  2415. - id: IROM1
  2416. start: '0x08000000'
  2417. size: '0x200000'
  2418. default: '1'
  2419. - id: IROM2
  2420. start: '0x00200000'
  2421. size: '0x200000'
  2422. default: '0'
  2423. compiler:
  2424. gcc:
  2425. entry_point: entry
  2426. link_script: linkscripts\STM32F779BI\link.lds
  2427. marco: []
  2428. files: []
  2429. armcc:
  2430. entry_point: none
  2431. link_script: none
  2432. marco: []
  2433. files: []
  2434. iarcc:
  2435. entry_point: none
  2436. link_script: none
  2437. marco: []
  2438. files: []
  2439. - chip_name: STM32F779NI
  2440. peripheral: {}
  2441. memory:
  2442. - id: IROM1
  2443. start: '0x08000000'
  2444. size: '0x200000'
  2445. default: '1'
  2446. - id: IROM2
  2447. start: '0x00200000'
  2448. size: '0x200000'
  2449. default: '0'
  2450. compiler:
  2451. gcc:
  2452. entry_point: entry
  2453. link_script: linkscripts\STM32F779NI\link.lds
  2454. marco: []
  2455. files: []
  2456. armcc:
  2457. entry_point: none
  2458. link_script: none
  2459. marco: []
  2460. files: []
  2461. iarcc:
  2462. entry_point: none
  2463. link_script: none
  2464. marco: []
  2465. files: []
  2466. - chip_name: STM32F779II
  2467. peripheral: {}
  2468. memory:
  2469. - id: IROM1
  2470. start: '0x08000000'
  2471. size: '0x200000'
  2472. default: '1'
  2473. - id: IROM2
  2474. start: '0x00200000'
  2475. size: '0x200000'
  2476. default: '0'
  2477. compiler:
  2478. gcc:
  2479. entry_point: entry
  2480. link_script: linkscripts\STM32F779II\link.lds
  2481. marco: []
  2482. files: []
  2483. armcc:
  2484. entry_point: none
  2485. link_script: none
  2486. marco: []
  2487. files: []
  2488. iarcc:
  2489. entry_point: none
  2490. link_script: none
  2491. marco: []
  2492. files: []
  2493. - chip_name: STM32F779AI
  2494. peripheral: {}
  2495. memory:
  2496. - id: IROM1
  2497. start: '0x08000000'
  2498. size: '0x200000'
  2499. default: '1'
  2500. - id: IROM2
  2501. start: '0x00200000'
  2502. size: '0x200000'
  2503. default: '0'
  2504. compiler:
  2505. gcc:
  2506. entry_point: entry
  2507. link_script: linkscripts\STM32F779AI\link.lds
  2508. marco: []
  2509. files: []
  2510. armcc:
  2511. entry_point: none
  2512. link_script: none
  2513. marco: []
  2514. files: []
  2515. iarcc:
  2516. entry_point: none
  2517. link_script: none
  2518. marco: []
  2519. files: []
  2520. ui:
  2521. uart:
  2522. default_value: UART1
  2523. prompt_message_en: select one uart as console output interface
  2524. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  2525. tx_pin:
  2526. default_value: PA9
  2527. prompt_message_en: 'set the tx pin name of the console device interface, the
  2528. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  2529. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  2530. PB6
  2531. rx_pin:
  2532. default_value: PA10
  2533. prompt_message_en: 'set the rx pin name of the console device interface, the
  2534. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  2535. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  2536. docs:
  2537. - file: documents\DM00224583.pdf
  2538. title: STM32F76xxx/7xxx Reference Manual
  2539. - file: documents\DM00225424.pdf
  2540. title: STM32F777/778A/779 Data Sheet
  2541. svd:
  2542. file: debug\svd\STM32F7x9_v1r2.svd
  2543. compiler:
  2544. gcc:
  2545. entry_point: none
  2546. link_script: none
  2547. marco:
  2548. - STM32F779xx
  2549. files:
  2550. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f779xx.S
  2551. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f779xx.h
  2552. - libraries\CMSIS\Lib\GCC
  2553. armcc:
  2554. entry_point: none
  2555. link_script: none
  2556. marco: []
  2557. files: []
  2558. iarcc:
  2559. entry_point: none
  2560. link_script: none
  2561. marco: []
  2562. files: []
  2563. memory:
  2564. - id: IRAM1
  2565. start: '0x20020000'
  2566. size: '0x60000'
  2567. init: '0'
  2568. default: '1'
  2569. - id: IRAM2
  2570. start: '0x20000000'
  2571. size: '0x20000'
  2572. init: '0'
  2573. default: '1'
  2574. project_type:
  2575. bare_metal:
  2576. function_map:
  2577. clk_init: none
  2578. uart_init: none
  2579. putc: none
  2580. sysTick: none
  2581. marco:
  2582. - SOC_FAMILY_STM32
  2583. - SOC_SERIES_STM32F7
  2584. - USE_HAL_DRIVER
  2585. source_files:
  2586. - drivers\baremetal
  2587. rtt_nano:
  2588. function_map:
  2589. clk_init: none
  2590. uart_init: none
  2591. putc: none
  2592. getc: none
  2593. sysTick: none
  2594. heap_init: none
  2595. marco:
  2596. - SOC_FAMILY_STM32
  2597. - SOC_SERIES_STM32F7
  2598. - USE_HAL_DRIVER
  2599. source_files:
  2600. - drivers\nano
  2601. rtt:
  2602. function_map:
  2603. rt_hw_board_init;: none
  2604. rt_hw_serial_register: none
  2605. rt_hw_pin_register: none
  2606. heap_init: none
  2607. marco:
  2608. - SOC_FAMILY_STM32
  2609. - SOC_SERIES_STM32F7
  2610. - USE_HAL_DRIVER
  2611. source_files:
  2612. - drivers\rtt
  2613. - sub_series_name: STM32F732
  2614. cpu_info:
  2615. fpu: SP_FPU
  2616. chips:
  2617. - chip_name: STM32F732VE
  2618. peripheral: {}
  2619. memory:
  2620. - id: IROM1
  2621. start: '0x08000000'
  2622. size: '0x80000'
  2623. default: '1'
  2624. - id: IROM2
  2625. start: '0x00200000'
  2626. size: '0x80000'
  2627. default: '0'
  2628. compiler:
  2629. gcc:
  2630. entry_point: entry
  2631. link_script: linkscripts\STM32F732VE\link.lds
  2632. marco: []
  2633. files: []
  2634. armcc:
  2635. entry_point: none
  2636. link_script: none
  2637. marco: []
  2638. files: []
  2639. iarcc:
  2640. entry_point: none
  2641. link_script: none
  2642. marco: []
  2643. files: []
  2644. - chip_name: STM32F732RE
  2645. peripheral: {}
  2646. memory:
  2647. - id: IROM1
  2648. start: '0x08000000'
  2649. size: '0x80000'
  2650. default: '1'
  2651. - id: IROM2
  2652. start: '0x00200000'
  2653. size: '0x80000'
  2654. default: '0'
  2655. compiler:
  2656. gcc:
  2657. entry_point: entry
  2658. link_script: linkscripts\STM32F732RE\link.lds
  2659. marco: []
  2660. files: []
  2661. armcc:
  2662. entry_point: none
  2663. link_script: none
  2664. marco: []
  2665. files: []
  2666. iarcc:
  2667. entry_point: none
  2668. link_script: none
  2669. marco: []
  2670. files: []
  2671. - chip_name: STM32F732ZE
  2672. peripheral: {}
  2673. memory:
  2674. - id: IROM1
  2675. start: '0x08000000'
  2676. size: '0x80000'
  2677. default: '1'
  2678. - id: IROM2
  2679. start: '0x00200000'
  2680. size: '0x80000'
  2681. default: '0'
  2682. compiler:
  2683. gcc:
  2684. entry_point: entry
  2685. link_script: linkscripts\STM32F732ZE\link.lds
  2686. marco: []
  2687. files: []
  2688. armcc:
  2689. entry_point: none
  2690. link_script: none
  2691. marco: []
  2692. files: []
  2693. iarcc:
  2694. entry_point: none
  2695. link_script: none
  2696. marco: []
  2697. files: []
  2698. - chip_name: STM32F732IE
  2699. peripheral: {}
  2700. memory:
  2701. - id: IROM1
  2702. start: '0x08000000'
  2703. size: '0x80000'
  2704. default: '1'
  2705. - id: IROM2
  2706. start: '0x00200000'
  2707. size: '0x80000'
  2708. default: '0'
  2709. compiler:
  2710. gcc:
  2711. entry_point: entry
  2712. link_script: linkscripts\STM32F732IE\link.lds
  2713. marco: []
  2714. files: []
  2715. armcc:
  2716. entry_point: none
  2717. link_script: none
  2718. marco: []
  2719. files: []
  2720. iarcc:
  2721. entry_point: none
  2722. link_script: none
  2723. marco: []
  2724. files: []
  2725. ui:
  2726. uart:
  2727. default_value: UART1
  2728. prompt_message_en: select one uart as console output interface
  2729. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  2730. tx_pin:
  2731. default_value: PA9
  2732. prompt_message_en: 'set the tx pin name of the console device interface, the
  2733. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  2734. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  2735. PB6
  2736. rx_pin:
  2737. default_value: PA10
  2738. prompt_message_en: 'set the rx pin name of the console device interface, the
  2739. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  2740. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  2741. docs:
  2742. - file: documents\DM00305990.pdf
  2743. title: STM32F72xxx/3xxx Reference Manual
  2744. - file: documents\DM00330507.pdf
  2745. title: STM32F732xx/3xx Data Sheet
  2746. svd:
  2747. file: debug\svd\STM32F7x2_v1r0.svd
  2748. compiler:
  2749. gcc:
  2750. entry_point: none
  2751. link_script: none
  2752. marco:
  2753. - STM32F732xx
  2754. files:
  2755. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f732xx.S
  2756. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f732xx.h
  2757. - libraries\CMSIS\Lib\GCC
  2758. armcc:
  2759. entry_point: none
  2760. link_script: none
  2761. marco: []
  2762. files: []
  2763. iarcc:
  2764. entry_point: none
  2765. link_script: none
  2766. marco: []
  2767. files: []
  2768. memory:
  2769. - id: IRAM1
  2770. start: '0x20010000'
  2771. size: '0x30000'
  2772. init: '0'
  2773. default: '1'
  2774. - id: IRAM2
  2775. start: '0x20000000'
  2776. size: '0x10000'
  2777. init: '0'
  2778. default: '1'
  2779. project_type:
  2780. bare_metal:
  2781. function_map:
  2782. clk_init: none
  2783. uart_init: none
  2784. putc: none
  2785. sysTick: none
  2786. marco:
  2787. - SOC_FAMILY_STM32
  2788. - SOC_SERIES_STM32F7
  2789. - USE_HAL_DRIVER
  2790. source_files:
  2791. - drivers\baremetal
  2792. rtt_nano:
  2793. function_map:
  2794. clk_init: none
  2795. uart_init: none
  2796. putc: none
  2797. getc: none
  2798. sysTick: none
  2799. heap_init: none
  2800. marco:
  2801. - SOC_FAMILY_STM32
  2802. - SOC_SERIES_STM32F7
  2803. - USE_HAL_DRIVER
  2804. source_files:
  2805. - drivers\nano
  2806. rtt:
  2807. function_map:
  2808. rt_hw_board_init;: none
  2809. rt_hw_serial_register: none
  2810. rt_hw_pin_register: none
  2811. heap_init: none
  2812. marco:
  2813. - SOC_FAMILY_STM32
  2814. - SOC_SERIES_STM32F7
  2815. - USE_HAL_DRIVER
  2816. source_files:
  2817. - drivers\rtt
  2818. - sub_series_name: STM32F722
  2819. cpu_info:
  2820. fpu: SP_FPU
  2821. chips:
  2822. - chip_name: STM32F722VE
  2823. peripheral: {}
  2824. memory:
  2825. - id: IROM1
  2826. start: '0x08000000'
  2827. size: '0x80000'
  2828. default: '1'
  2829. - id: IROM2
  2830. start: '0x00200000'
  2831. size: '0x80000'
  2832. default: '0'
  2833. compiler:
  2834. gcc:
  2835. entry_point: entry
  2836. link_script: linkscripts\STM32F722VE\link.lds
  2837. marco: []
  2838. files: []
  2839. armcc:
  2840. entry_point: none
  2841. link_script: none
  2842. marco: []
  2843. files: []
  2844. iarcc:
  2845. entry_point: none
  2846. link_script: none
  2847. marco: []
  2848. files: []
  2849. - chip_name: STM32F722RE
  2850. peripheral: {}
  2851. memory:
  2852. - id: IROM1
  2853. start: '0x08000000'
  2854. size: '0x80000'
  2855. default: '1'
  2856. - id: IROM2
  2857. start: '0x00200000'
  2858. size: '0x80000'
  2859. default: '0'
  2860. compiler:
  2861. gcc:
  2862. entry_point: entry
  2863. link_script: linkscripts\STM32F722RE\link.lds
  2864. marco: []
  2865. files: []
  2866. armcc:
  2867. entry_point: none
  2868. link_script: none
  2869. marco: []
  2870. files: []
  2871. iarcc:
  2872. entry_point: none
  2873. link_script: none
  2874. marco: []
  2875. files: []
  2876. - chip_name: STM32F722ZE
  2877. peripheral: {}
  2878. memory:
  2879. - id: IROM1
  2880. start: '0x08000000'
  2881. size: '0x80000'
  2882. default: '1'
  2883. - id: IROM2
  2884. start: '0x00200000'
  2885. size: '0x80000'
  2886. default: '0'
  2887. compiler:
  2888. gcc:
  2889. entry_point: entry
  2890. link_script: linkscripts\STM32F722ZE\link.lds
  2891. marco: []
  2892. files: []
  2893. armcc:
  2894. entry_point: none
  2895. link_script: none
  2896. marco: []
  2897. files: []
  2898. iarcc:
  2899. entry_point: none
  2900. link_script: none
  2901. marco: []
  2902. files: []
  2903. - chip_name: STM32F722IE
  2904. peripheral: {}
  2905. memory:
  2906. - id: IROM1
  2907. start: '0x08000000'
  2908. size: '0x80000'
  2909. default: '1'
  2910. - id: IROM2
  2911. start: '0x00200000'
  2912. size: '0x80000'
  2913. default: '0'
  2914. compiler:
  2915. gcc:
  2916. entry_point: entry
  2917. link_script: linkscripts\STM32F722IE\link.lds
  2918. marco: []
  2919. files: []
  2920. armcc:
  2921. entry_point: none
  2922. link_script: none
  2923. marco: []
  2924. files: []
  2925. iarcc:
  2926. entry_point: none
  2927. link_script: none
  2928. marco: []
  2929. files: []
  2930. - chip_name: STM32F722RC
  2931. peripheral: {}
  2932. memory:
  2933. - id: IROM1
  2934. start: '0x08000000'
  2935. size: '0x40000'
  2936. default: '1'
  2937. - id: IROM2
  2938. start: '0x00200000'
  2939. size: '0x40000'
  2940. default: '0'
  2941. compiler:
  2942. gcc:
  2943. entry_point: entry
  2944. link_script: linkscripts\STM32F722RC\link.lds
  2945. marco: []
  2946. files: []
  2947. armcc:
  2948. entry_point: none
  2949. link_script: none
  2950. marco: []
  2951. files: []
  2952. iarcc:
  2953. entry_point: none
  2954. link_script: none
  2955. marco: []
  2956. files: []
  2957. - chip_name: STM32F722VC
  2958. peripheral: {}
  2959. memory:
  2960. - id: IROM1
  2961. start: '0x08000000'
  2962. size: '0x40000'
  2963. default: '1'
  2964. - id: IROM2
  2965. start: '0x00200000'
  2966. size: '0x40000'
  2967. default: '0'
  2968. compiler:
  2969. gcc:
  2970. entry_point: entry
  2971. link_script: linkscripts\STM32F722VC\link.lds
  2972. marco: []
  2973. files: []
  2974. armcc:
  2975. entry_point: none
  2976. link_script: none
  2977. marco: []
  2978. files: []
  2979. iarcc:
  2980. entry_point: none
  2981. link_script: none
  2982. marco: []
  2983. files: []
  2984. - chip_name: STM32F722ZC
  2985. peripheral: {}
  2986. memory:
  2987. - id: IROM1
  2988. start: '0x08000000'
  2989. size: '0x40000'
  2990. default: '1'
  2991. - id: IROM2
  2992. start: '0x00200000'
  2993. size: '0x40000'
  2994. default: '0'
  2995. compiler:
  2996. gcc:
  2997. entry_point: entry
  2998. link_script: linkscripts\STM32F722ZC\link.lds
  2999. marco: []
  3000. files: []
  3001. armcc:
  3002. entry_point: none
  3003. link_script: none
  3004. marco: []
  3005. files: []
  3006. iarcc:
  3007. entry_point: none
  3008. link_script: none
  3009. marco: []
  3010. files: []
  3011. - chip_name: STM32F722IC
  3012. peripheral: {}
  3013. memory:
  3014. - id: IROM1
  3015. start: '0x08000000'
  3016. size: '0x40000'
  3017. default: '1'
  3018. - id: IROM2
  3019. start: '0x00200000'
  3020. size: '0x40000'
  3021. default: '0'
  3022. compiler:
  3023. gcc:
  3024. entry_point: entry
  3025. link_script: linkscripts\STM32F722IC\link.lds
  3026. marco: []
  3027. files: []
  3028. armcc:
  3029. entry_point: none
  3030. link_script: none
  3031. marco: []
  3032. files: []
  3033. iarcc:
  3034. entry_point: none
  3035. link_script: none
  3036. marco: []
  3037. files: []
  3038. ui:
  3039. uart:
  3040. default_value: UART1
  3041. prompt_message_en: select one uart as console output interface
  3042. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3043. tx_pin:
  3044. default_value: PA9
  3045. prompt_message_en: 'set the tx pin name of the console device interface, the
  3046. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3047. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  3048. PB6
  3049. rx_pin:
  3050. default_value: PA10
  3051. prompt_message_en: 'set the rx pin name of the console device interface, the
  3052. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3053. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3054. docs:
  3055. - file: documents\DM00305990.pdf
  3056. title: STM32F72xxx/3xxx Reference Manual
  3057. - file: documents\DM00330506.pdf
  3058. title: STM32F722xx/3xx Data Sheet
  3059. svd:
  3060. file: debug\svd\STM32F7x2_v1r0.svd
  3061. compiler:
  3062. gcc:
  3063. entry_point: none
  3064. link_script: none
  3065. marco:
  3066. - STM32F722xx
  3067. files:
  3068. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f722xx.S
  3069. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f722xx.h
  3070. - libraries\CMSIS\Lib\GCC
  3071. armcc:
  3072. entry_point: none
  3073. link_script: none
  3074. marco: []
  3075. files: []
  3076. iarcc:
  3077. entry_point: none
  3078. link_script: none
  3079. marco: []
  3080. files: []
  3081. memory:
  3082. - id: IRAM1
  3083. start: '0x20010000'
  3084. size: '0x30000'
  3085. init: '0'
  3086. default: '1'
  3087. - id: IRAM2
  3088. start: '0x20000000'
  3089. size: '0x10000'
  3090. init: '0'
  3091. default: '1'
  3092. project_type:
  3093. bare_metal:
  3094. function_map:
  3095. clk_init: none
  3096. uart_init: none
  3097. putc: none
  3098. sysTick: none
  3099. marco:
  3100. - SOC_FAMILY_STM32
  3101. - SOC_SERIES_STM32F7
  3102. - USE_HAL_DRIVER
  3103. source_files:
  3104. - drivers\baremetal
  3105. rtt_nano:
  3106. function_map:
  3107. clk_init: none
  3108. uart_init: none
  3109. putc: none
  3110. getc: none
  3111. sysTick: none
  3112. heap_init: none
  3113. marco:
  3114. - SOC_FAMILY_STM32
  3115. - SOC_SERIES_STM32F7
  3116. - USE_HAL_DRIVER
  3117. source_files:
  3118. - drivers\nano
  3119. rtt:
  3120. function_map:
  3121. rt_hw_board_init;: none
  3122. rt_hw_serial_register: none
  3123. rt_hw_pin_register: none
  3124. heap_init: none
  3125. marco:
  3126. - SOC_FAMILY_STM32
  3127. - SOC_SERIES_STM32F7
  3128. - USE_HAL_DRIVER
  3129. source_files:
  3130. - drivers\rtt
  3131. - sub_series_name: STM32F733
  3132. cpu_info:
  3133. fpu: SP_FPU
  3134. chips:
  3135. - chip_name: STM32F733VE
  3136. peripheral: {}
  3137. memory:
  3138. - id: IROM1
  3139. start: '0x08000000'
  3140. size: '0x80000'
  3141. default: '1'
  3142. - id: IROM2
  3143. start: '0x00200000'
  3144. size: '0x80000'
  3145. default: '0'
  3146. compiler:
  3147. gcc:
  3148. entry_point: entry
  3149. link_script: linkscripts\STM32F733VE\link.lds
  3150. marco: []
  3151. files: []
  3152. armcc:
  3153. entry_point: none
  3154. link_script: none
  3155. marco: []
  3156. files: []
  3157. iarcc:
  3158. entry_point: none
  3159. link_script: none
  3160. marco: []
  3161. files: []
  3162. - chip_name: STM32F733ZE
  3163. peripheral: {}
  3164. memory:
  3165. - id: IROM1
  3166. start: '0x08000000'
  3167. size: '0x80000'
  3168. default: '1'
  3169. - id: IROM2
  3170. start: '0x00200000'
  3171. size: '0x80000'
  3172. default: '0'
  3173. compiler:
  3174. gcc:
  3175. entry_point: entry
  3176. link_script: linkscripts\STM32F733ZE\link.lds
  3177. marco: []
  3178. files: []
  3179. armcc:
  3180. entry_point: none
  3181. link_script: none
  3182. marco: []
  3183. files: []
  3184. iarcc:
  3185. entry_point: none
  3186. link_script: none
  3187. marco: []
  3188. files: []
  3189. - chip_name: STM32F733IE
  3190. peripheral: {}
  3191. memory:
  3192. - id: IROM1
  3193. start: '0x08000000'
  3194. size: '0x80000'
  3195. default: '1'
  3196. - id: IROM2
  3197. start: '0x00200000'
  3198. size: '0x80000'
  3199. default: '0'
  3200. compiler:
  3201. gcc:
  3202. entry_point: entry
  3203. link_script: linkscripts\STM32F733IE\link.lds
  3204. marco: []
  3205. files: []
  3206. armcc:
  3207. entry_point: none
  3208. link_script: none
  3209. marco: []
  3210. files: []
  3211. iarcc:
  3212. entry_point: none
  3213. link_script: none
  3214. marco: []
  3215. files: []
  3216. ui:
  3217. uart:
  3218. default_value: UART1
  3219. prompt_message_en: select one uart as console output interface
  3220. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3221. tx_pin:
  3222. default_value: PA9
  3223. prompt_message_en: 'set the tx pin name of the console device interface, the
  3224. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3225. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  3226. PB6
  3227. rx_pin:
  3228. default_value: PA10
  3229. prompt_message_en: 'set the rx pin name of the console device interface, the
  3230. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3231. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3232. docs:
  3233. - file: documents\DM00305990.pdf
  3234. title: STM32F72xxx/3xxx Reference Manual
  3235. - file: documents\DM00330507.pdf
  3236. title: STM32F732xx/3xx Data Sheet
  3237. svd:
  3238. file: debug\svd\STM32F7x3_v1r0.svd
  3239. compiler:
  3240. gcc:
  3241. entry_point: none
  3242. link_script: none
  3243. marco:
  3244. - STM32F733xx
  3245. files:
  3246. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f733xx.S
  3247. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f733xx.h
  3248. - libraries\CMSIS\Lib\GCC
  3249. armcc:
  3250. entry_point: none
  3251. link_script: none
  3252. marco: []
  3253. files: []
  3254. iarcc:
  3255. entry_point: none
  3256. link_script: none
  3257. marco: []
  3258. files: []
  3259. memory:
  3260. - id: IRAM1
  3261. start: '0x20010000'
  3262. size: '0x30000'
  3263. init: '0'
  3264. default: '1'
  3265. - id: IRAM2
  3266. start: '0x20000000'
  3267. size: '0x10000'
  3268. init: '0'
  3269. default: '1'
  3270. project_type:
  3271. bare_metal:
  3272. function_map:
  3273. clk_init: none
  3274. uart_init: none
  3275. putc: none
  3276. sysTick: none
  3277. marco:
  3278. - SOC_FAMILY_STM32
  3279. - SOC_SERIES_STM32F7
  3280. - USE_HAL_DRIVER
  3281. source_files:
  3282. - drivers\baremetal
  3283. rtt_nano:
  3284. function_map:
  3285. clk_init: none
  3286. uart_init: none
  3287. putc: none
  3288. getc: none
  3289. sysTick: none
  3290. heap_init: none
  3291. marco:
  3292. - SOC_FAMILY_STM32
  3293. - SOC_SERIES_STM32F7
  3294. - USE_HAL_DRIVER
  3295. source_files:
  3296. - drivers\nano
  3297. rtt:
  3298. function_map:
  3299. rt_hw_board_init;: none
  3300. rt_hw_serial_register: none
  3301. rt_hw_pin_register: none
  3302. heap_init: none
  3303. marco:
  3304. - SOC_FAMILY_STM32
  3305. - SOC_SERIES_STM32F7
  3306. - USE_HAL_DRIVER
  3307. source_files:
  3308. - drivers\rtt
  3309. - sub_series_name: STM32F723
  3310. cpu_info:
  3311. fpu: SP_FPU
  3312. chips:
  3313. - chip_name: STM32F723VE
  3314. peripheral: {}
  3315. memory:
  3316. - id: IROM1
  3317. start: '0x08000000'
  3318. size: '0x80000'
  3319. default: '1'
  3320. - id: IROM2
  3321. start: '0x00200000'
  3322. size: '0x80000'
  3323. default: '0'
  3324. compiler:
  3325. gcc:
  3326. entry_point: entry
  3327. link_script: linkscripts\STM32F723VE\link.lds
  3328. marco: []
  3329. files: []
  3330. armcc:
  3331. entry_point: none
  3332. link_script: none
  3333. marco: []
  3334. files: []
  3335. iarcc:
  3336. entry_point: none
  3337. link_script: none
  3338. marco: []
  3339. files: []
  3340. - chip_name: STM32F723ZE
  3341. peripheral: {}
  3342. memory:
  3343. - id: IROM1
  3344. start: '0x08000000'
  3345. size: '0x80000'
  3346. default: '1'
  3347. - id: IROM2
  3348. start: '0x00200000'
  3349. size: '0x80000'
  3350. default: '0'
  3351. compiler:
  3352. gcc:
  3353. entry_point: entry
  3354. link_script: linkscripts\STM32F723ZE\link.lds
  3355. marco: []
  3356. files: []
  3357. armcc:
  3358. entry_point: none
  3359. link_script: none
  3360. marco: []
  3361. files: []
  3362. iarcc:
  3363. entry_point: none
  3364. link_script: none
  3365. marco: []
  3366. files: []
  3367. - chip_name: STM32F723IE
  3368. peripheral: {}
  3369. memory:
  3370. - id: IROM1
  3371. start: '0x08000000'
  3372. size: '0x80000'
  3373. default: '1'
  3374. - id: IROM2
  3375. start: '0x00200000'
  3376. size: '0x80000'
  3377. default: '0'
  3378. compiler:
  3379. gcc:
  3380. entry_point: entry
  3381. link_script: linkscripts\STM32F723IE\link.lds
  3382. marco: []
  3383. files: []
  3384. armcc:
  3385. entry_point: none
  3386. link_script: none
  3387. marco: []
  3388. files: []
  3389. iarcc:
  3390. entry_point: none
  3391. link_script: none
  3392. marco: []
  3393. files: []
  3394. - chip_name: STM32F723ZC
  3395. peripheral: {}
  3396. memory:
  3397. - id: IROM1
  3398. start: '0x08000000'
  3399. size: '0x40000'
  3400. default: '1'
  3401. - id: IROM2
  3402. start: '0x00200000'
  3403. size: '0x40000'
  3404. default: '0'
  3405. compiler:
  3406. gcc:
  3407. entry_point: entry
  3408. link_script: linkscripts\STM32F723ZC\link.lds
  3409. marco: []
  3410. files: []
  3411. armcc:
  3412. entry_point: none
  3413. link_script: none
  3414. marco: []
  3415. files: []
  3416. iarcc:
  3417. entry_point: none
  3418. link_script: none
  3419. marco: []
  3420. files: []
  3421. - chip_name: STM32F723IC
  3422. peripheral: {}
  3423. memory:
  3424. - id: IROM1
  3425. start: '0x08000000'
  3426. size: '0x40000'
  3427. default: '1'
  3428. - id: IROM2
  3429. start: '0x00200000'
  3430. size: '0x40000'
  3431. default: '0'
  3432. compiler:
  3433. gcc:
  3434. entry_point: entry
  3435. link_script: linkscripts\STM32F723IC\link.lds
  3436. marco: []
  3437. files: []
  3438. armcc:
  3439. entry_point: none
  3440. link_script: none
  3441. marco: []
  3442. files: []
  3443. iarcc:
  3444. entry_point: none
  3445. link_script: none
  3446. marco: []
  3447. files: []
  3448. ui:
  3449. uart:
  3450. default_value: UART1
  3451. prompt_message_en: select one uart as console output interface
  3452. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3453. tx_pin:
  3454. default_value: PA9
  3455. prompt_message_en: 'set the tx pin name of the console device interface, the
  3456. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3457. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  3458. PB6
  3459. rx_pin:
  3460. default_value: PA10
  3461. prompt_message_en: 'set the rx pin name of the console device interface, the
  3462. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3463. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3464. docs:
  3465. - file: documents\DM00305990.pdf
  3466. title: STM32F72xxx/3xxx Reference Manual
  3467. - file: documents\DM00330506.pdf
  3468. title: STM32F722xx/3xx Data Sheet
  3469. svd:
  3470. file: debug\svd\STM32F7x3_v1r0.svd
  3471. compiler:
  3472. gcc:
  3473. entry_point: none
  3474. link_script: none
  3475. marco:
  3476. - STM32F723xx
  3477. files:
  3478. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f723xx.S
  3479. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f723xx.h
  3480. - libraries\CMSIS\Lib\GCC
  3481. armcc:
  3482. entry_point: none
  3483. link_script: none
  3484. marco: []
  3485. files: []
  3486. iarcc:
  3487. entry_point: none
  3488. link_script: none
  3489. marco: []
  3490. files: []
  3491. memory:
  3492. - id: IRAM1
  3493. start: '0x20010000'
  3494. size: '0x30000'
  3495. init: '0'
  3496. default: '1'
  3497. - id: IRAM2
  3498. start: '0x20000000'
  3499. size: '0x10000'
  3500. init: '0'
  3501. default: '1'
  3502. project_type:
  3503. bare_metal:
  3504. function_map:
  3505. clk_init: none
  3506. uart_init: none
  3507. putc: none
  3508. sysTick: none
  3509. marco:
  3510. - SOC_FAMILY_STM32
  3511. - SOC_SERIES_STM32F7
  3512. - USE_HAL_DRIVER
  3513. source_files:
  3514. - drivers\baremetal
  3515. rtt_nano:
  3516. function_map:
  3517. clk_init: none
  3518. uart_init: none
  3519. putc: none
  3520. getc: none
  3521. sysTick: none
  3522. heap_init: none
  3523. marco:
  3524. - SOC_FAMILY_STM32
  3525. - SOC_SERIES_STM32F7
  3526. - USE_HAL_DRIVER
  3527. source_files:
  3528. - drivers\nano
  3529. rtt:
  3530. function_map:
  3531. rt_hw_board_init;: none
  3532. rt_hw_serial_register: none
  3533. rt_hw_pin_register: none
  3534. heap_init: none
  3535. marco:
  3536. - SOC_FAMILY_STM32
  3537. - SOC_SERIES_STM32F7
  3538. - USE_HAL_DRIVER
  3539. source_files:
  3540. - drivers\rtt
  3541. - sub_series_name: STM32F730
  3542. cpu_info:
  3543. fpu: SP_FPU
  3544. chips:
  3545. - chip_name: STM32F730R8
  3546. peripheral: {}
  3547. memory:
  3548. - id: IROM1
  3549. start: '0x08000000'
  3550. size: '0x10000'
  3551. default: '1'
  3552. - id: IROM2
  3553. start: '0x00200000'
  3554. size: '0x10000'
  3555. default: '0'
  3556. compiler:
  3557. gcc:
  3558. entry_point: entry
  3559. link_script: linkscripts\STM32F730R8\link.lds
  3560. marco: []
  3561. files: []
  3562. armcc:
  3563. entry_point: none
  3564. link_script: none
  3565. marco: []
  3566. files: []
  3567. iarcc:
  3568. entry_point: none
  3569. link_script: none
  3570. marco: []
  3571. files: []
  3572. - chip_name: STM32F730V8
  3573. peripheral: {}
  3574. memory:
  3575. - id: IROM1
  3576. start: '0x08000000'
  3577. size: '0x10000'
  3578. default: '1'
  3579. - id: IROM2
  3580. start: '0x00200000'
  3581. size: '0x10000'
  3582. default: '0'
  3583. compiler:
  3584. gcc:
  3585. entry_point: entry
  3586. link_script: linkscripts\STM32F730V8\link.lds
  3587. marco: []
  3588. files: []
  3589. armcc:
  3590. entry_point: none
  3591. link_script: none
  3592. marco: []
  3593. files: []
  3594. iarcc:
  3595. entry_point: none
  3596. link_script: none
  3597. marco: []
  3598. files: []
  3599. - chip_name: STM32F730Z8
  3600. peripheral: {}
  3601. memory:
  3602. - id: IROM1
  3603. start: '0x08000000'
  3604. size: '0x10000'
  3605. default: '1'
  3606. - id: IROM2
  3607. start: '0x00200000'
  3608. size: '0x10000'
  3609. default: '0'
  3610. compiler:
  3611. gcc:
  3612. entry_point: entry
  3613. link_script: linkscripts\STM32F730Z8\link.lds
  3614. marco: []
  3615. files: []
  3616. armcc:
  3617. entry_point: none
  3618. link_script: none
  3619. marco: []
  3620. files: []
  3621. iarcc:
  3622. entry_point: none
  3623. link_script: none
  3624. marco: []
  3625. files: []
  3626. - chip_name: STM32F730I8
  3627. peripheral: {}
  3628. memory:
  3629. - id: IROM1
  3630. start: '0x08000000'
  3631. size: '0x10000'
  3632. default: '1'
  3633. - id: IROM2
  3634. start: '0x00200000'
  3635. size: '0x10000'
  3636. default: '0'
  3637. compiler:
  3638. gcc:
  3639. entry_point: entry
  3640. link_script: linkscripts\STM32F730I8\link.lds
  3641. marco: []
  3642. files: []
  3643. armcc:
  3644. entry_point: none
  3645. link_script: none
  3646. marco: []
  3647. files: []
  3648. iarcc:
  3649. entry_point: none
  3650. link_script: none
  3651. marco: []
  3652. files: []
  3653. ui:
  3654. uart:
  3655. default_value: UART1
  3656. prompt_message_en: select one uart as console output interface
  3657. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3658. tx_pin:
  3659. default_value: PA9
  3660. prompt_message_en: 'set the tx pin name of the console device interface, the
  3661. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3662. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  3663. PB6
  3664. rx_pin:
  3665. default_value: PA10
  3666. prompt_message_en: 'set the rx pin name of the console device interface, the
  3667. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3668. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3669. docs:
  3670. - file: documents\DM00305990.pdf
  3671. title: STM32F72xxx/3xxx Reference Manual
  3672. - file: documents\stm32f730i8.pdf
  3673. title: STM32F730x8 Data Sheet
  3674. svd:
  3675. file: debug\svd\STM32F730x.svd
  3676. compiler:
  3677. gcc:
  3678. entry_point: none
  3679. link_script: none
  3680. marco:
  3681. - STM32F730xx
  3682. files:
  3683. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f730xx.S
  3684. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f730xx.h
  3685. - libraries\CMSIS\Lib\GCC
  3686. armcc:
  3687. entry_point: none
  3688. link_script: none
  3689. marco: []
  3690. files: []
  3691. iarcc:
  3692. entry_point: none
  3693. link_script: none
  3694. marco: []
  3695. files: []
  3696. memory:
  3697. - id: IRAM1
  3698. start: '0x20010000'
  3699. size: '0x30000'
  3700. init: '0'
  3701. default: '1'
  3702. - id: IRAM2
  3703. start: '0x20000000'
  3704. size: '0x10000'
  3705. init: '0'
  3706. default: '1'
  3707. project_type:
  3708. bare_metal:
  3709. function_map:
  3710. clk_init: none
  3711. uart_init: none
  3712. putc: none
  3713. sysTick: none
  3714. marco:
  3715. - SOC_FAMILY_STM32
  3716. - SOC_SERIES_STM32F7
  3717. - USE_HAL_DRIVER
  3718. source_files:
  3719. - drivers\baremetal
  3720. rtt_nano:
  3721. function_map:
  3722. clk_init: none
  3723. uart_init: none
  3724. putc: none
  3725. getc: none
  3726. sysTick: none
  3727. heap_init: none
  3728. marco:
  3729. - SOC_FAMILY_STM32
  3730. - SOC_SERIES_STM32F7
  3731. - USE_HAL_DRIVER
  3732. source_files:
  3733. - drivers\nano
  3734. rtt:
  3735. function_map:
  3736. rt_hw_board_init;: none
  3737. rt_hw_serial_register: none
  3738. rt_hw_pin_register: none
  3739. heap_init: none
  3740. marco:
  3741. - SOC_FAMILY_STM32
  3742. - SOC_SERIES_STM32F7
  3743. - USE_HAL_DRIVER
  3744. source_files:
  3745. - drivers\rtt
  3746. - sub_series_name: STM32F750
  3747. cpu_info:
  3748. fpu: SP_FPU
  3749. chips:
  3750. - chip_name: STM32F750V8
  3751. peripheral: {}
  3752. memory:
  3753. - id: IROM1
  3754. start: '0x08000000'
  3755. size: '0x10000'
  3756. default: '1'
  3757. - id: IROM2
  3758. start: '0x00200000'
  3759. size: '0x10000'
  3760. default: '0'
  3761. compiler:
  3762. gcc:
  3763. entry_point: entry
  3764. link_script: linkscripts\STM32F750V8\link.lds
  3765. marco: []
  3766. files: []
  3767. armcc:
  3768. entry_point: none
  3769. link_script: none
  3770. marco: []
  3771. files: []
  3772. iarcc:
  3773. entry_point: none
  3774. link_script: none
  3775. marco: []
  3776. files: []
  3777. - chip_name: STM32F750Z8
  3778. peripheral: {}
  3779. memory:
  3780. - id: IROM1
  3781. start: '0x08000000'
  3782. size: '0x10000'
  3783. default: '1'
  3784. - id: IROM2
  3785. start: '0x00200000'
  3786. size: '0x10000'
  3787. default: '0'
  3788. compiler:
  3789. gcc:
  3790. entry_point: entry
  3791. link_script: linkscripts\STM32F750Z8\link.lds
  3792. marco: []
  3793. files: []
  3794. armcc:
  3795. entry_point: none
  3796. link_script: none
  3797. marco: []
  3798. files: []
  3799. iarcc:
  3800. entry_point: none
  3801. link_script: none
  3802. marco: []
  3803. files: []
  3804. - chip_name: STM32F750N8
  3805. peripheral: {}
  3806. memory:
  3807. - id: IROM1
  3808. start: '0x08000000'
  3809. size: '0x10000'
  3810. default: '1'
  3811. - id: IROM2
  3812. start: '0x00200000'
  3813. size: '0x10000'
  3814. default: '0'
  3815. compiler:
  3816. gcc:
  3817. entry_point: entry
  3818. link_script: linkscripts\STM32F750N8\link.lds
  3819. marco: []
  3820. files: []
  3821. armcc:
  3822. entry_point: none
  3823. link_script: none
  3824. marco: []
  3825. files: []
  3826. iarcc:
  3827. entry_point: none
  3828. link_script: none
  3829. marco: []
  3830. files: []
  3831. ui:
  3832. uart:
  3833. default_value: UART1
  3834. prompt_message_en: select one uart as console output interface
  3835. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3836. tx_pin:
  3837. default_value: PA9
  3838. prompt_message_en: 'set the tx pin name of the console device interface, the
  3839. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3840. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2,
  3841. PB6
  3842. rx_pin:
  3843. default_value: PA10
  3844. prompt_message_en: 'set the rx pin name of the console device interface, the
  3845. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3846. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3847. docs:
  3848. - file: documents\DM00124865.pdf
  3849. title: STM32F74xx/5xx Reference Manual
  3850. - file: documents\stm32f750n8.pdf
  3851. title: STM32F750x8 Data Sheet
  3852. svd:
  3853. file: debug\svd\STM32F750x.svd
  3854. compiler:
  3855. gcc:
  3856. entry_point: none
  3857. link_script: none
  3858. marco:
  3859. - STM32F750xx
  3860. files:
  3861. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\gcc\startup_stm32f750xx.S
  3862. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f750xx.h
  3863. - libraries\CMSIS\Lib\GCC
  3864. armcc:
  3865. entry_point: none
  3866. link_script: none
  3867. marco: []
  3868. files: []
  3869. iarcc:
  3870. entry_point: none
  3871. link_script: none
  3872. marco: []
  3873. files: []
  3874. memory:
  3875. - id: IRAM1
  3876. start: '0x20010000'
  3877. size: '0x40000'
  3878. init: '0'
  3879. default: '1'
  3880. - id: IRAM2
  3881. start: '0x20000000'
  3882. size: '0x10000'
  3883. init: '0'
  3884. default: '1'
  3885. project_type:
  3886. bare_metal:
  3887. function_map:
  3888. clk_init: none
  3889. uart_init: none
  3890. putc: none
  3891. sysTick: none
  3892. marco:
  3893. - SOC_FAMILY_STM32
  3894. - SOC_SERIES_STM32F7
  3895. - USE_HAL_DRIVER
  3896. source_files:
  3897. - drivers\baremetal
  3898. rtt_nano:
  3899. function_map:
  3900. clk_init: none
  3901. uart_init: none
  3902. putc: none
  3903. getc: none
  3904. sysTick: none
  3905. heap_init: none
  3906. marco:
  3907. - SOC_FAMILY_STM32
  3908. - SOC_SERIES_STM32F7
  3909. - USE_HAL_DRIVER
  3910. source_files:
  3911. - drivers\nano
  3912. rtt:
  3913. function_map:
  3914. rt_hw_board_init;: none
  3915. rt_hw_serial_register: none
  3916. rt_hw_pin_register: none
  3917. heap_init: none
  3918. marco:
  3919. - SOC_FAMILY_STM32
  3920. - SOC_SERIES_STM32F7
  3921. - USE_HAL_DRIVER
  3922. source_files:
  3923. - drivers\rtt
  3924. docs:
  3925. - file: documents\DM00189702.pdf
  3926. title: STM32F7xx HAL Drivers
  3927. - file: documents\DUI0646B_cortex_m7_dgug.pdf
  3928. title: Cortex-M7 Generic User Guide
  3929. source_files:
  3930. file:
  3931. - libraries\STM32F7xx_HAL_Driver
  3932. - libraries\CMSIS\Include
  3933. - libraries\CMSIS\RTOS
  3934. - libraries\CMSIS\Device\ST\STM32F7xx\Include\stm32f7xx.h
  3935. - libraries\CMSIS\Device\ST\STM32F7xx\Include\system_stm32f7xx.h
  3936. - libraries\CMSIS\Device\ST\STM32F7xx\Source\Templates\system_stm32f7xx.c
  3937. cpu_info:
  3938. max_clock: '216000000'
  3939. core: Cortex-M7
  3940. mpu: MPU
  3941. endian: Little-endian
  3942. ui:
  3943. uart:
  3944. default_value: UART1
  3945. prompt_message_en: select one uart as console output interface
  3946. prompt_message_zh: 选择一个串口作为控制台信息输出接口
  3947. tx_pin:
  3948. default_value: PA9
  3949. prompt_message_en: 'set the tx pin name of the console device interface, the
  3950. value should be with a format"P+[port name][pin number]",eg. PA9,PB6 '
  3951. prompt_message_zh: 设置控制台设备的数据发送引脚的名称, 名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6
  3952. rx_pin:
  3953. default_value: PA10
  3954. prompt_message_en: 'set the rx pin name of the console device interface, the
  3955. value should be with a format"P+[port name][pin number]", eg. PA10, PB7 '
  3956. prompt_message_zh: 设置控制台设备的数据发送引脚的名称,名称应该具有以下格式“P+[端口名称][端口编号]”, 比如:PA2, PB6