You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
NASM
46 lines
1.5 KiB
NASM
2 months ago
|
;; TI File $Revision: /main/1 $
|
||
|
;; Checkin $Date: July 30, 2007 10:29:23 $
|
||
|
;;###########################################################################
|
||
|
;;
|
||
|
;; FILE: ADC_cal.asm
|
||
|
;;
|
||
|
;; TITLE: 2833x Boot Rom ADC Cal routine.
|
||
|
;;
|
||
|
;; Functions:
|
||
|
;;
|
||
|
;; _ADC_cal - Copies device specific calibration data into ADCREFSEL and
|
||
|
;; ADCOFFTRIM registers
|
||
|
;; Notes:
|
||
|
;;
|
||
|
;;###########################################################################
|
||
|
;; $TI Release: F2833x/F2823x Header Files and Peripheral Examples V142 $
|
||
|
;; $Release Date: November 1, 2016 $
|
||
|
;; $Copyright: Copyright (C) 2007-2016 Texas Instruments Incorporated -
|
||
|
;; http://www.ti.com/ ALL RIGHTS RESERVED $
|
||
|
;;###########################################################################
|
||
|
|
||
|
.def _ADC_cal
|
||
|
.asg "0x711C", ADCREFSEL_LOC
|
||
|
|
||
|
;-----------------------------------------------
|
||
|
; _ADC_cal
|
||
|
;-----------------------------------------------
|
||
|
;-----------------------------------------------
|
||
|
; This is the ADC cal routine.This routine is programmed into
|
||
|
; reserved memory by the factory. 0xAAAA and 0xBBBB are place-
|
||
|
; holders for calibration data.
|
||
|
;The actual values programmed by TI are device specific.
|
||
|
;
|
||
|
; This function assumes that the clocks have been
|
||
|
; enabled to the ADC module.
|
||
|
;-----------------------------------------------
|
||
|
|
||
|
.sect ".adc_cal"
|
||
|
|
||
|
_ADC_cal
|
||
|
MOVW DP, #ADCREFSEL_LOC >> 6
|
||
|
MOV @28, #0xAAAA ; actual value may not be 0xAAAA
|
||
|
MOV @29, #0xBBBB ; actual value may not be 0xBBBB
|
||
|
LRETR
|
||
|
;eof ----------
|