Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
turn 'switch' errors into warnings to notify about unhandled values
Many sections of the code rely on switches over the ControlType enum to handle the different libcamera control types. When newer enum values are added with newer versions of libcamera, the 'switch' errors (-Wall) will prevent compilation even though the node will continue to work without supporting the new types. Relax this by turning all 'switch' errors into warnings again to notify the developer and implement support for these new type enum values later.
- Loading branch information