Bugfix: Separate Rotation and Routing

This commit is contained in:
2026-07-16 11:04:43 +02:00
parent e70392aafe
commit afd92ac457
6 changed files with 87 additions and 25 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
namespace aare::remap::format {
static inline std::string toString(defs::Rotation r) {
return (r == defs::Rotation::Normal ? "Normal" : "Inverse");
return (r == defs::Rotation::Identity ? "Identity" : "Rotate180");
}
static inline std::string toString(defs::SensorPixelGeometry const &g) {