1 / 17

C8051F020 DAC

C8051F020 DAC. See chapter 8 of C8051F02x.pdf. The C8051F020 contains two 12-bit DAC’s Output swing from 0V to VREF-1LSB Several possible sources for VREF Internal reference = 1.2 X 2 = 2.4 volts, AV+, external. Possible update sources: Update on write to high byte of DAC. (Default)

elysia
Télécharger la présentation

C8051F020 DAC

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. C8051F020 DAC See chapter 8 of C8051F02x.pdf

  2. The C8051F020 contains two 12-bit DAC’s • Output swing from 0V to VREF-1LSB • Several possible sources for VREF • Internal reference = 1.2 X 2 = 2.4 volts, AV+, external. • Possible update sources: • Update on write to high byte of DAC. (Default) • Update on timer overflow. • Position of 12 bits used can be varied.

  3. 0 0 1 1 1

  4. 1 0 0 0 0 0

  5. INIT_DACS: MOV REF0CN,#07H ;USE INTERNAL VREF MOV DAC0CN,#10000000B ;EN DAC0, UPDATE ON WR, LEFT JUSTIFIED MOV DAC1CN,#10000000B ;EN DAC1, UPDATE ON WR, LEFT JUSTIFIED RET WR_DAC0: MOV DAC0L,R7 ;OUTPUT LOW BYTE MOV DAC0H,R6 ;OUTPUT HIGH BYTE RET WR_DAC1: MOV DAC1L,R7 ;OUTPUT LOW BYTE MOV DAC1H,R6 ;OUTPUT HIGH BYTE RET

More Related