Creality CR100 & SSD1306 OLED-Display (or any other) January 11, 2023 03:52PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 12, 2023 03:12AM |
Registered: 7 years ago Posts: 325 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 12, 2023 04:22AM |
Admin Registered: 12 years ago Posts: 6,861 |
//*** I2C *** #ifdef HAL_I2C_MODULE_ENABLED WEAK const PinMap PinMap_I2C_SDA[] = { {PB_7, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_NONE)}, {PB_9, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_I2C1_ENABLE)}, #if defined(STM32F103x|| defined(STM32F103xE) || defined(STM32F103xG) {PB_11, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_NONE)}, #endif {NC, NP, 0} }; #endif #ifdef HAL_I2C_MODULE_ENABLED WEAK const PinMap PinMap_I2C_SCL[] = { {PB_6, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_NONE)}, {PB_8, I2C1, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_I2C1_ENABLE)}, #if defined(STM32F103x
|| defined(STM32F103xE) || defined(STM32F103xG) {PB_10, I2C2, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_NOPULL, AFIO_NONE)}, #endif {NC, NP, 0} }; #endif
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 12, 2023 09:02AM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 12, 2023 03:21PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 12, 2023 07:47PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 13, 2023 02:47AM |
Registered: 10 months ago Posts: 13 |
Sorry to hear that, stef! It just shows that DIY is not recommendable to newcomers without guidance. Just imagine if those live-wires would touch your skin or something! Dangerous! I wish you much more luck in this new year. Don't let yourself get dragged down. After all, we humans make mistakes and learn to do it better next time, by carefully analyzing the situation, what went wrong, how to increase work safety, etc etc! Don't let those live wires dangle around, man.Quote
stef123
Please forget the issue for now - my machine is dead - short circuit accident, loose +3.3V wire for setting Boot0 accordingly (no jumper on the main board) connected straight i suppose to life wire (housing of the printer was / is cramped) , which also killed my Computer through USB and my ST-Link - well, happy new year, ship happens, as always.
(...)
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 13, 2023 07:50AM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 13, 2023 04:10PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 14, 2023 08:42PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 14, 2023 10:48PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 15, 2023 01:58AM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 15, 2023 08:55AM |
Registered: 7 years ago Posts: 325 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 15, 2023 10:32AM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 03:47PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 04:09PM |
Registered: 7 years ago Posts: 325 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 04:17PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 04:28PM |
Registered: 7 years ago Posts: 325 |
#ifdef Y_STOP_PIN #if Y_HOME_TO_MIN #define Y_MIN_PIN Y_STOP_PIN #ifndef Y_MAX_PIN #define Y_MAX_PIN -1 #endif #else #define Y_MAX_PIN Y_STOP_PIN #ifndef Y_MIN_PIN #define Y_MIN_PIN -1 #endif #endif #elif Y_HOME_TO_MIN
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 04:29PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 04:36PM |
Registered: 9 months ago Posts: 18 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 16, 2023 05:11PM |
Registered: 7 years ago Posts: 325 |
Re: Creality CR100 & SSD1306 OLED-Display (or any other) January 22, 2023 09:57PM |
Registered: 9 months ago Posts: 18 |