File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ function loadPinmux()
4646 pin . gpioValue = "unmodified"
4747 pin . kernelPinNumber = 0
4848 pin . pruPinNumber = 0
49+ pin . visible = false
4950 }
5051 }
5152
@@ -92,6 +93,7 @@ function loadPinmux()
9293 if ( pin <= portList [ port - 8 ] . pinList . length ) // BB has 46 pins per port
9394 {
9495 var targetPin = portList [ port - 8 ] . pinList [ pin - 1 ]
96+ targetPin . visible = true
9597 switch ( type ) {
9698 case "PINMUX" :
9799 targetPin . functions = functionsData
Original file line number Diff line number Diff line change 2020import QtQuick 2.0
2121
2222Rectangle {
23- property int pinCount: 46
23+ property int pinCount: 92
2424 property int pinRows: 2
2525 property int pinNumberingInterval: 5
2626 property var pinList: []
@@ -60,7 +60,8 @@ Rectangle {
6060 " previewEnabled" : Qt .binding (function (){return main .previewEnabled }),
6161 " configMode" : Qt .binding (function (){return main .configMode }),
6262 " displayUneditablePins" : Qt .binding (function (){return main .displayUneditablePins }),
63- " z" : numPins- number});
63+ " z" : numPins- number,
64+ " visible" : false });
6465
6566 if (sprite === null ) {
6667 // Error Handling
You can’t perform that action at this time.
0 commit comments