stm32-rs / stm32f7xx-hal

A Rust embedded-hal HAL for all MCUs in the STM32 F7 family
Apache License 2.0
115 stars 67 forks source link

serial::Config example needs character_match #76

Closed pdgilbert closed 4 years ago

pdgilbert commented 4 years ago

Exampe serial has started giving

        serial::Config {
        ^^^^^^^^^^^^^^ missing `character_match`

It seems no now need character_match added:

       serial::Config {
            baud_rate: 115_200.bps(),
            oversampling: serial::Oversampling::By16,
            character_match: None,
        },
mvertescher commented 4 years ago

This has been fixed in #75