浏览代码

Re-enable all MCUs.

Mathias Gottschlag 4 年前
父节点
当前提交
a04a9687f9
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      src/mcu.rs

+ 4
- 4
src/mcu.rs 查看文件

208
 lazy_static! {
208
 lazy_static! {
209
     static ref MCUS: BTreeMap<String, &'static str> = {
209
     static ref MCUS: BTreeMap<String, &'static str> = {
210
         let mut mcus = BTreeMap::new();
210
         let mut mcus = BTreeMap::new();
211
-        /*mcus.insert(
211
+        mcus.insert(
212
             "STM32F030C6Tx".to_owned(),
212
             "STM32F030C6Tx".to_owned(),
213
             include_str!("../cube-MX-db/mcu/STM32F030C6Tx.xml"),
213
             include_str!("../cube-MX-db/mcu/STM32F030C6Tx.xml"),
214
         );
214
         );
1371
         mcus.insert(
1371
         mcus.insert(
1372
             "STM32F429ZGYx".to_owned(),
1372
             "STM32F429ZGYx".to_owned(),
1373
             include_str!("../cube-MX-db/mcu/STM32F429ZGYx.xml"),
1373
             include_str!("../cube-MX-db/mcu/STM32F429ZGYx.xml"),
1374
-        );*/
1374
+        );
1375
         mcus.insert(
1375
         mcus.insert(
1376
             "STM32F429ZITx".to_owned(),
1376
             "STM32F429ZITx".to_owned(),
1377
             include_str!("../cube-MX-db/mcu/STM32F429ZITx.xml"),
1377
             include_str!("../cube-MX-db/mcu/STM32F429ZITx.xml"),
1378
         );
1378
         );
1379
-        /*mcus.insert(
1379
+        mcus.insert(
1380
             "STM32F429ZIYx".to_owned(),
1380
             "STM32F429ZIYx".to_owned(),
1381
             include_str!("../cube-MX-db/mcu/STM32F429ZIYx.xml"),
1381
             include_str!("../cube-MX-db/mcu/STM32F429ZIYx.xml"),
1382
         );
1382
         );
3355
         mcus.insert(
3355
         mcus.insert(
3356
             "STM32L4S9ZIYx".to_owned(),
3356
             "STM32L4S9ZIYx".to_owned(),
3357
             include_str!("../cube-MX-db/mcu/STM32L4S9ZIYx.xml"),
3357
             include_str!("../cube-MX-db/mcu/STM32L4S9ZIYx.xml"),
3358
-        );*/
3358
+        );
3359
         mcus
3359
         mcus
3360
     };
3360
     };
3361
 }
3361
 }

正在加载...
取消
保存