Dave Vandenbout

Results 93 comments of Dave Vandenbout

The AttributeError is raised because you have parts which do not have any assigned footprints. Since there footprint is None, the split() function is raising an exception. There should have...

I'm not seeing this error when running the tests on linux. You can try it on Windows and see if the error occurs there. If so, then go ahead and...

Thanks for looking at this, @roboPanda69. It appears that the changes need to be made to the `kinet2pcb` utility, so I'll do that over there. Then I'll come back and...

Can you provide an example where this would be used?

I see the problem. There are several solutions using the existing codebase. Here's the simplest one: use the `split_pin_names` function (introduced in version 1.0.0). If your microcontroller is in a...

I'm all for getting more SKiDL development assistance from others! If you can provide some concrete examples of what you're doing with SKiDL, then I can think about how we...

OK, here's what I *think* you're saying so you can correct me as needed: 1. You want some function in the `skidl` package called `compile()`. 2. There is a stored...

One avenue I'm thinking about is making a second entry-point into the SKiDL library with an alternate start-up sequence. Then your program could trigger that to get access to what...

Which version of SKiDL are you using? Is it 1.2.1 from PyPi? I would suggest trying the development version: ```bash pip install git+https://github.com/devbisme/skidl@development ``` The development version includes some new...

My apologies! When I finally got around to checking this, I found I'd failed to push the development branch to Github! I've done that, so give it a try and...