cs2dsb

Results 11 comments of cs2dsb

Have you seen the XML files in STM32CubeMX? [Someone has uploaded a copy here](https://github.com/esden/stm32cube-database) They seem to specify every possible variant of each peripheral (db/mcu/ip/*.xml) and which of them exist...

I've had a bash at getting something useful out of the CubeMx db xml files. I focussed on getting the interrupts out because the interrupts for the micro I'm using...

I'm not sure this is possible - I've been poking about and it seems that you need DEBUGEN in DHCSR to be set for any DBGMCU registers to work but...

@mubes In my case, I have my UART dongle connected to SWO and GND and a separate header for programming so I was listening for ITM packets but if I...

A fly in the ointment is if you are using DWT for delays which a bunch of the hal implementations do [f1/i2c for example](https://github.com/stm32-rs/stm32f1xx-hal/blob/master/src/i2c.rs) the TRCENA bit has to be...

Wow it's been a while since I looked at this. I don't have any hardware to hand to try and debug it at the moment but I can try and...

> Very cool project! > I tested it and found the last query command should be: Thanks, I've updated the README.md

> I'm having trouble starting the program in the first place. Anything I can help with? I've just added a pre-compiled windows binary to the [release](https://github.com/cs2dsb/lcsc-scrape.rs/releases/tag/2020-05-23) in case it's windows...

Yea, so you can run any SQL using the "query" option and if you pipe the output to a file it will produce a CSV. So for example: ``` lcsc-scrape.exe...

For the first issue, yes, I should fix that - I'll add it to the todo list. You can work around it by specifying only the columns you want instead...