pxt-common-packages 12.2.11 → 12.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -170,9 +170,9 @@ class WDisplay {
|
|
|
170
170
|
|
|
171
171
|
// SER pin (or first bit of second HC) is orientation
|
|
172
172
|
if (hc & 0x0010)
|
|
173
|
-
*cfg0
|
|
173
|
+
*cfg0 = 0x80;
|
|
174
174
|
else
|
|
175
|
-
*cfg0
|
|
175
|
+
*cfg0 = 0x40;
|
|
176
176
|
|
|
177
177
|
uint32_t configId = (hc & 0xe0) >> 5;
|
|
178
178
|
|
|
@@ -375,4 +375,4 @@ void updateStats(String msg) {
|
|
|
375
375
|
// ignore...
|
|
376
376
|
}
|
|
377
377
|
|
|
378
|
-
} // namespace pxt
|
|
378
|
+
} // namespace pxt
|