refactoring: struct field initializers

This commit is contained in:
qrp73 2019-10-05 07:17:58 +03:00
parent c57b78374f
commit cbe4fc7265

24
main.c
View file

@ -463,13 +463,13 @@ void i2s_end_callback(I2SDriver *i2sp, size_t offset, size_t n)
} }
static const I2SConfig i2sconfig = { static const I2SConfig i2sconfig = {
NULL, // TX Buffer .tx_buffer = NULL, // TX Buffer
rx_buffer, // RX Buffer .rx_buffer = rx_buffer, // RX Buffer
AUDIO_BUFFER_LEN * 2, .size = AUDIO_BUFFER_LEN * 2,
NULL, // tx callback .tx_end_cb = NULL, // tx callback
i2s_end_callback, // rx callback .rx_end_cb = i2s_end_callback, // rx callback
0, // i2scfgr .i2scfgr = 0, // i2scfgr
2 // i2spr .i2spr = 2 // i2spr
}; };
static void cmd_data(BaseSequentialStream *chp, int argc, char *argv[]) static void cmd_data(BaseSequentialStream *chp, int argc, char *argv[])
@ -1992,14 +1992,14 @@ static const ShellCommand commands[] =
static const ShellConfig shell_cfg1 = static const ShellConfig shell_cfg1 =
{ {
(BaseSequentialStream *)&SDU1, .sc_channel = (BaseSequentialStream *)&SDU1,
commands .sc_commands = commands
}; };
static const I2CConfig i2ccfg = { static const I2CConfig i2ccfg = {
0x00300506, //voodoo magic 400kHz @ HSI 8MHz .timingr = 0x00300506, //voodoo magic 400kHz @ HSI 8MHz
0, .cr1 = 0,
0 .cr2 = 0
}; };
static DACConfig dac1cfg1 = { static DACConfig dac1cfg1 = {