Skip to content

Wrong condition in picoboard/blinky #86

@hotovson

Description

@hotovson

there is wrong condition on lines

if (*str >= 'A' && *str < 'Z') {

and
} else if (*str >= 'a' && *str < 'z') {

must be
if (*str >= 'A' && *str <= 'Z') {
and
} else if (*str >= 'a' && *str <= 'z') {
respectively

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions