Fix for missing simulator function (#549)
https://github.com/Microsoft/pxt/issues/3193
This commit is contained in:
		@@ -193,13 +193,13 @@ namespace pxsim.bluetooth {
 | 
				
			|||||||
    export function startUartService(): void {
 | 
					    export function startUartService(): void {
 | 
				
			||||||
        // TODO
 | 
					        // TODO
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    export function uartWrite(s: string): void {
 | 
					    export function uartWriteString(s: string): void {
 | 
				
			||||||
        serial.writeString(s)
 | 
					        serial.writeString(s)
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    export function uartReadUntil(del: string): string {
 | 
					    export function uartReadUntil(del: string): string {
 | 
				
			||||||
        return serial.readUntil(del);
 | 
					        return serial.readUntil(del);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    export function onDataReceived(delimiters: string, handler: RefAction) {
 | 
					    export function onUartDataReceived(delimiters: string, handler: RefAction) {
 | 
				
			||||||
        let b = board();
 | 
					        let b = board();
 | 
				
			||||||
        b.bus.listen(DAL.MICROBIT_ID_BLE_UART, DAL.MICROBIT_UART_S_EVT_DELIM_MATCH, handler);
 | 
					        b.bus.listen(DAL.MICROBIT_ID_BLE_UART, DAL.MICROBIT_UART_S_EVT_DELIM_MATCH, handler);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user