view src/mcp.asm @ 650:bc214815deb2

3.19/10.75 release
author heinrichsweikamp
date Sun, 28 Aug 2022 13:13:38 +0200
parents 4050675965ea
children 75e90cd0c2c3
line wrap: on
line source

;=============================================================================
;
;   File mcp.asm                            * combined next generation V3.06.1
;
;   Basic routines for RX circuity
;
;   Copyright (c) 2012, JD Gascuel, HeinrichsWeikamp, all right reserved.
;=============================================================================
; HISTORY
;  2012-08-12 : [mH] Creation


#include "hwos.inc"
#include "wait.inc"


;=============================================================================
mcp		code
;=============================================================================


;-----------------------------------------------------------------------------
; Disable IR Receiver
;
	global	mcp_sleep
mcp_sleep:
	bcf		INTCON3,INT3IE			; disable INT3
	bcf		mcp_power				; power down IR receiver
	btfsc	mcp_power				; power drained down?
	bra		$-6						; NO  - loop waiting
	return							; YES - done

;-----------------------------------------------------------------------------

	END