Closed JoeBenczarski closed 3 months ago
It would be a nice feature to be able to use |= and &= on etl::ioport* types when relevant.
Right now, I have been using the long-form syntax to set a bit of a register, e.g. etl::io_port_rw ctrl; ctrl = ctrl | 1;
I am in the process of adding several operators.
|= &= ^= ~
Also see this on Slack IO port class change proposal
Fixed 20.39.3
It would be a nice feature to be able to use |= and &= on etl::ioport* types when relevant.
Right now, I have been using the long-form syntax to set a bit of a register, e.g. etl::io_port_rw ctrl;
ctrl = ctrl | 1;