However, I get an error when trying to print that says pin PB15 is reserved for spi2
The error reads:
“pin PB15 is reserved for spi2”
The problem is that according to the BTT pinout documentation PB15 pin is supposed to be for the heater fan.
This seems to be a difference between the BTT SKR mini E3 V3.0 and the BTT SKR mini E3 V2.0. Pin PB15 was a pin for the screen on the V2.0 but that pin for the screen has changed to PD6 on V3.0.
Sooooo I’m guessing that the spi2 reservation should be PD6 and not PB15 for the V3.0 board.
I’m using Linux process for some reason. I can’t quite remember why I moved over to Linux… I believe it’s because of Python 3 but I really can’t recall why I switched.
Your issue is that you’ve specified an invalid cs pin for the adxl345, and my guess is Klipper is reserving SPI pins on the MCU as a result. You need to fix the config line below.
Looking through your log, you originally had this defined correctly, but you’ve made multiple changes over the course of several restarts that have fixed some issues, and created others. Note that you changed your host mcu to be named host instead of rpi, so the normal rpi:None pin will not work unless you also change [mcu host] back to [mcu rpi].
However, now I have a problem with my z endstop switch not being triggered AND my BLtouch isn’t verifying correctly. I’ve checked the hardware and everything is where it should be. Any thoughts on this? I’ve included my Klippy.log. klippy.log (210.4 KB)
Edit: figured it out. Apparently I found an actual bug this time (maybe). There needs to be a ^ next to the sensor pin in the printer config. So it should be ^PC14 as opposed to just PC14.
But it looks like things are working just fine now. Thanks for the help!! I’ve added my new config file here:
I think you need to distinguish between a ‘bug’ i.e. something not working in accordance with the documentation around how it should work. And you misconfiguring things.
The config for the SKR Mini E3 V3.0 does NOT include any BLtouch configuration, and doesn’t reference PC14 at all. So when you added it to your config, you didn’t add it correctly. This is not a Klipper bug.
If you had of referenced the Klipper documentation the requirement for the pullup configuration would have been apparent: BL-Touch - Klipper documentation
If I’m new or completely unexprienced in a topic, my personal approach is:
RTFM
Google
Ask for support
In 9.9 out of 10 cases, I have messed up something and it was not a bug, so at least my experience.
In doubt, it can be taken very badly to cluelessly ramble about bugs.