dmjh

2025-01-14 10:41:57 -0500
//代码片段
//UTF8
int dqkgsz()
{
//read button value
int kgvalue=0;
//PB11 PB10 PB1 PB0
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_11) == GPIO_PIN_RESET) kgvalue|=(1<< 1);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_10) == GPIO_PIN_RESET) kgvalue|=(1<< 2);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_1) == GPIO_PIN_RESET) kgvalue|=(1<< 3);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_0) == GPIO_PIN_RESET) kgvalue|=(1<< 4);
//PA7 PA5:1
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_7) == GPIO_PIN_RESET) kgvalue|=(1<< 5);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_5) == GPIO_PIN_RESET) kgvalue|=(1<< 6);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_4) == GPIO_PIN_RESET) kgvalue|=(1<< 7);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_3) == GPIO_PIN_RESET) kgvalue|=(1<< 8);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_2) == GPIO_PIN_RESET) kgvalue|=(1<< 9);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_1) == GPIO_PIN_RESET) kgvalue|=(1<< 10);
//PB9 PB8 PB5:3
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_9) == GPIO_PIN_RESET) kgvalue|=(1<< 11);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_8) == GPIO_PIN_RESET) kgvalue|=(1<< 12);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_5) == GPIO_PIN_RESET) kgvalue|=(1<< 13);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_4) == GPIO_PIN_RESET) kgvalue|=(1<< 14);
if(HAL_GPIO_ReadPin(GPIOB, GPIO_PIN_3) == GPIO_PIN_RESET) kgvalue|=(1<< 15);
//PA15 PA12 PA11
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_15) == GPIO_PIN_RESET) kgvalue|=(1<< 16);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_12) == GPIO_PIN_RESET) kgvalue|=(1<< 17);
if(HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_11) == GPIO_PIN_RESET) kgvalue|=(1<< 18);
return kgvalue;
}
int szh(int a)
{
//digit sum in binary
int b=0;
for(int i=0;i<32;i++)
{
if(a|(1<<i)) b++;
}
return b;
}
int testbutton(int a)
{
//test the button pressed
for(int i=0;i<32;i++)
{
if(a|(1<<i)) return i;
}
return 0;
}
int testbutton2(int a)
{
//test the second button pressed
int b=0;
for(int i=0;i<32;i++)
{
if(a|(1<<i)) b++;
if(b==2) return i;
}
return 0;
}
void ssd1306_Init(void)
{
uint8_t cmd[10]={
0x00,//coltrol
0xAE,//display off
0x8d,0x14,//Enable charge pump
0x00,0x10,//column address
0xa1,//Set segment remap
0xb2,//page address
};
HAL_I2C_Master_Transmit(&hi2c1, SSD1306_ADDR, &cmd[0], 8, HAL_MAX_DELAY);
}
void oledsenddata(int clmaddr,int pageaddr,int txlen,byte* databuf)
{
//data buffer should have control byte 0x40
byte cmdbuf[4]={0x00,(0xb0 | (pageaddr&0x07)),(0x10|(clmaddr>>4)),(clmaddr&0x0f)};
HAL_I2C_Master_Transmit(&hi2c1, SSD1306_ADDR, cmdbuf, 4, HAL_MAX_DELAY);
HAL_I2C_Master_Transmit(&hi2c1, SSD1306_ADDR, databuf, txlen, HAL_MAX_DELAY);
}
void oledprint(char* str, byte pageaddr, byte clmaddr, bool color)
{
char* p;
byte dbuf[129]={0x40};
int bufindex=1;
for (int i = 0; str[i] != 0; i++)
{
if ((str[i] >= ' ') && (str[i] <= '~'))
{
p = ASCIIBDC[str[i] - ' '];
for (int j = 1; j <= p[0]; j++)
{
if (color) dbuf[bufindex]=(p[j]);
else dbuf[bufindex]=(~p[j]);
bufindex++;
}
}
}
oledsenddata(clmaddr,pageaddr,bufindex-1,dbuf);
}
void toneupdate(int t,int p,int d)
{
//tone update
//parameter: timer prescaler duty)
if(d<0) d=0;
if(d>100) d=100;
if(p<16) p=16;//limit max freq
if(p>40000) p=40000;//limit min freq
if(t==1)
{
__HAL_TIM_SET_PRESCALER(&htim1, p);
__HAL_TIM_SetCompare(&htim1, TIM_CHANNEL_1, d);
}
if(t==2)
{
__HAL_TIM_SET_PRESCALER(&htim2, p);
__HAL_TIM_SetCompare(&htim2, TIM_CHANNEL_1, d);
}
}
void setvolume(int v)
{
//set volume
if(v<0) v=0;
if(v>100) v=100;
__HAL_TIM_SetCompare(&htim3, TIM_CHANNEL_1, v);
}
Schematic_SC8002功放模块_2025-03-30.pdf (114.89 KiB) | Meta
«Newer      Older»
Comment:
Name:

Back to home

Subscribe | Register | Login | N