view src/mcp.asm @ 634:4050675965ea

3.10 stable release
author heinrichsweikamp
date Tue, 28 Apr 2020 17:34:31 +0200
parents 237931377539
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