|
我用的屏不是微雪的,它没引出CS脚,我使用微信宠物屋例程连了线屏幕无显示,又在例程中将原先的OLED驱动.c .h移除自己改了一套,可还是不行,代码见附件
其中io口初始化不知道与例程中是否有冲突
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_4 | GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
|
|