This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DAC8760 intermittent false Alarm Output

Other Parts Discussed in Thread: DAC8760

Problem Description: The  ~ALARM pin goes low intermittently (sometimes 15 minutes after power up, sometimes 4 hours) without any valid reason. It happens in 0-5 Vdc and 0-24 mA modes when actual output voltage / current correlates with data register values and works properly. When ~ALARM pin goes low my ISR reads Status Register and it returns 0x08 which is   WATCHDOG TIMER alarm (not enabled in my application).

DAC8760 Control register is set to:

0x7000                  -              0-5Vdc with 10% over range; or

0x7007                  -              0-24mA with 10% over range

 

DAC8760 Configuration register is set to:

0x0080                  -              DAC dual output disabled, APD Enabled, no HART, no CRS, no WD.

 

 

In 0-24mA mode I was tested Open Circuit alarm (by disconnected current loop load) and it works properly (Status Register is set to 0x04) and it disappears when I connect load back. However when alarm with 0x08 activated, it cannot be disabled by software reset (write to register 0x56 code 0x0001). I can disable it only with power on reset.    

 

Just to be clear I also measured IC surface temperature when this happens and it does not exceed 35C so we can eliminate thermal alarm issues.

 

This issue repeated on 4 devices so I assume all IC have the same behavior.

 

In the attachment you can find the DAC8760 implementation schematic page. We are using it ether in 0-5 Vdc or 0-24 mA mode (but never simultaneously) so IOUT and VOUT pins are connected together.

I also noticed that leaving analog output without load (high impedance for 0-5 Vdc or low impedance for 0-24mA) makes this issue disappear (I have tested several devices for days).

Generally device is working fine, but because I am using ~ALARM pin to activate my ISR which reads Status Register to pin point source of the ALARM this issue creates not needed firmware overhead. And on a top of it I cannot clear it with software reset.

This is time sensitive application and I cannot afford to poll Status Register periodically.

  • Aleksandr,

    Thank you for providing the register settings and a very complete explanation of the problem. This is the first time I have heard of such an issue, so we will have to work through this together. I have a few requests for you to help us understand where the problem may be originating from.

    Once the false alarm has been triggered, could you read the Configuration Register once more and provide us with the register contents?

    Also, once the false alarm has been triggered, could you try writing to the Watchdog timer reset register and see if the alarm condition goes away?
  • Kevin,

    Once the Alarm pins changing to low my ISR reads:
    Status Register: returns 0x08
    Control Register: returns 0x7000
    Configuration Register: returns 0x0080

    Then I am constantly reading (every 200 ms) all three register and they keep the same values until I perform Software Reset: writing 0x0001 to address 0x56. After Software reset I have following:
    Status Register: returns 0x08
    Control Register: returns 0x0000
    Configuration Register: returns 0x0000
    Alarm pins still Low.
    My output voltage drops to zero.
    When I perform Power Up reset the device is initialized with:
    Control Register: written with 0x7000, when read back returns 0x7000 as well
    Configuration Register: written with 0x0080, when read back returns 0x0080 as well
    Status register returns: 0x00 and Alarm pin is High.

    I can not find in the data sheet how I can write directly to the Watchdog timer reset register as you suggested. In the Configuration Register there are only bits 0,1 for Watchdog timeout period and bit 2 for Watchdog Enabled. Since I am reading the Configuration register and it returns 0x0080 the Watchdog must be Disabled.
  • Aleksandr,

    Any write to register addres 0x95 resets the watchdog timer. Please try this and share your results.
  • Kevin,

    I just verified: writing 0x0001 to the register address 0x95 does not change Status register (it still reads 0x08) and ALARM pins is Low. The only way I can reset Status Register is power up reset. Writing 0x0001 to the register address 0x56 (Reset Register) does not help as well.
  • Aleksandr,

    Thanks for the update, this at least gives us some clues.

    I'll need to work with my design team to try to find the root cause from here. I will update this thread when we have findings.
  • Hi Kevin,

    I did some troubleshooting and was able to narrow down this problem to particular event in my application. I first provide general description of the process:

    1. Every 10 ms 16 bit ADC gets data from sensor via SPI1.

    2. Firmware does some filtering, dynamic response compensation and linearization.

    3. Final flow reading is converted back to unsigned short variable DAC_Out and DAC8760 is updated with this variable via SPI1 interface every 100 ms. Final flow reading is also used to calculate Total value for 2 independent totalizers every 100 ms. So I have two single precision floating numbers: Total1 and Total2.

    4. Every one second these two variables (Total1 and Total2) are saved in the EEPROM (part number 25LC128 16KB part has 16,384 x 8-bit Organization) which is also assessable via SPI1 interface.

      The problem with DAC8760 Alarm is only happening when I am writing Total2 variable in to the EEPROM. If I remove statement which actually transmit 4 bytes to the EEPROM (Total2 value) from the code Alarm never triggers (I have checked it for several days). Once I put it back I can reliably recreate problem within 7 – 17 minutes. I think this time interval derived from the fact that in order to preserve EEPROM endurance I am writing every second to different address using 1024 bytes storage area.

      My definitions for EEPROM Totalisers storage area:

      #define                BlankEEPROM_ADD        0              // address of Blank EEPROM String

      #define                EE_T1_START                    0x1400  //Totalizer#1 rolling storage area in the EEPROM is defined from address 5120

      #define                EE_T1_SIZE                         1024       // With 1024 indexes total allocated memory will be 1024*4=4096 byte. (64 pages x 64 bytes)

      #define                EE_T2_START                     0x2500  //Totalizer#2 rolling storage area in the EEPROM is defined from address 9472

      #define                EE_T2_SIZE                         1024       // With 1024 indexes total allocated memory will be 1024*4=4096 byte. (64 pages x 64 bytse)             13568

       To recap all above: I have ADC, DAC EEPROM all on SPI1 with individual ~CS or ~Latch control lines. They never active in the same time. In order narrow down the problem I have disable one by one communication to ADC, EEPROM (Totalizer1 area), EEPROM (Totalizer2 area).

      Saving EEPROM for TOT1 and TOT2 actually are two identical function which are using different physical address in the EEPROM chip. Total1 value saved in the area: from 5120 to 9212 and Total2 value saved in the area: from 9472 to 13564.

      The problem with DAC8760 Alarm is only happening when I am writing in to the EEPROM addresses from 9472 to 13564. And it happens between 7 to 17 minutes after power up.

      In the attachment is a log file with some test data taken every time Total2 value is saved (every 1 sec):

      First line: EE_Index : EE_Address : Total2

      Second Line: DAC Status Register

      As you can see in line 2011 the Alarm was triggered after: 421 : 11156 : 207438.0 (value 207438.0 was written in to the EE address 11156).

      I did many tests and the actual value of the Total2 does not correlate with the problem but address does because it happens after every 800 – 1000 seconds.

      Since DAC8760 shift register gets all data on the SPI1 (default frame is 24 bits wide) regardless the ~Latch level is it possible that device receive some wrong bit combination (some bits were clocked in from different device which has different frame size) which activate Alarm?

      Sorry for long description but I think it may help with recreating the problem on your side.

     

    375000-1_03-30-2015_15-20-56_DataLog.txt
     Table
     Version:P005 READ:1384 
    441 : 11236 :  206523.8DAC S:0x
    00
    442 : 11240 :  206524.8
    DAC S:0x00
    443 : 11244 :  206525.7
    DAC S:0x00
    444 : 11248 :  206526.6
    DAC S:0x00
    445 : 11252 :  206527.5
    DAC S:0x00
    446 : 11256 :  206528.4
    DAC S:0x00
    447 : 11260 :  206529.3
    DAC S:0x00
    448 : 11264 :  206530.2
    DAC S:0x00
    449 : 11268 :  206531.1
    DAC S:0x00
    450 : 11272 :  206532.0
    DAC S:0x00
    451 : 11276 :  206532.9
    DAC S:0x00
    452 : 11280 :  206533.8
    DAC S:0x00
    453 : 11284 :  206534.8
    DAC S:0x00
    454 : 11288 :  206535.7
    DAC S:0x00
    455 : 11292 :  206536.6
    DAC S:0x00
    456 : 11296 :  206537.5
    DAC S:0x00
    457 : 11300 :  206538.4
    DAC S:0x00
    458 : 11304 :  206539.3
    DAC S:0x00
    459 : 11308 :  206540.2
    DAC S:0x00
    460 : 11312 :  206541.1
    DAC S:0x00
    461 : 11316 :  206542.0
    DAC S:0x00
    462 : 11320 :  206543.0
    DAC S:0x00
    463 : 11324 :  206543.9
    DAC S:0x00
    464 : 11328 :  206544.8
    DAC S:0x00
    465 : 11332 :  206545.7
    DAC S:0x00
    466 : 11336 :  206546.6
    DAC S:0x00
    467 : 11340 :  206547.5
    DAC S:0x00
    468 : 11344 :  206548.4
    DAC S:0x00
    469 : 11348 :  206549.3
    DAC S:0x00
    470 : 11352 :  206550.2
    DAC S:0x00
    471 : 11356 :  206551.2
    DAC S:0x00
    472 : 11360 :  206552.1
    DAC S:0x00
    473 : 11364 :  206553.0
    DAC S:0x00
    474 : 11368 :  206553.9
    DAC S:0x00
    475 : 11372 :  206554.8
    DAC S:0x00
    476 : 11376 :  206555.7
    DAC S:0x00
    477 : 11380 :  206556.6
    DAC S:0x00
    478 : 11384 :  206557.5
    DAC S:0x00
    479 : 11388 :  206558.4
    DAC S:0x00
    480 : 11392 :  206559.3
    DAC S:0x00
    481 : 11396 :  206560.3
    DAC S:0x00
    482 : 11400 :  206561.2
    DAC S:0x00
    483 : 11404 :  206562.1
    DAC S:0x00
    484 : 11408 :  206563.0
    DAC S:0x00
    485 : 11412 :  206563.9
    DAC S:0x00
    486 : 11416 :  206564.8
    DAC S:0x00
    487 : 11420 :  206565.7
    DAC S:0x00
    488 : 11424 :  206566.6
    DAC S:0x00
    489 : 11428 :  206567.5
    DAC S:0x00
    490 : 11432 :  206568.5
    DAC S:0x00
    491 : 11436 :  206569.4
    DAC S:0x00
    492 : 11440 :  206570.3
    DAC S:0x00
    493 : 11444 :  206571.2
    DAC S:0x00
    494 : 11448 :  206572.1
    DAC S:0x00
    495 : 11452 :  206573.0
    DAC S:0x00
    496 : 11456 :  206573.9
    DAC S:0x00
    497 : 11460 :  206574.8
    DAC S:0x00
    498 : 11464 :  206575.7
    DAC S:0x00
    499 : 11468 :  206576.6
    DAC S:0x00
    500 : 11472 :  206577.6
    DAC S:0x00
    501 : 11476 :  206578.5
    DAC S:0x00
    502 : 11480 :  206579.4
    DAC S:0x00
    503 : 11484 :  206580.3
    DAC S:0x00
    504 : 11488 :  206581.2
    DAC S:0x00
    505 : 11492 :  206582.1
    DAC S:0x00
    506 : 11496 :  206583.0
    DAC S:0x00
    507 : 11500 :  206583.9
    DAC S:0x00
    508 : 11504 :  206584.8
    DAC S:0x00
    509 : 11508 :  206585.8
    DAC S:0x00
    510 : 11512 :  206586.7
    DAC S:0x00
    511 : 11516 :  206587.6
    DAC S:0x00
    512 : 11520 :  206588.5
    DAC S:0x00
    513 : 11524 :  206589.4
    DAC S:0x00
    514 : 11528 :  206590.3
    DAC S:0x00
    515 : 11532 :  206591.2
    DAC S:0x00
    516 : 11536 :  206592.1
    DAC S:0x00
    517 : 11540 :  206593.0
    DAC S:0x00
    518 : 11544 :  206593.9
    DAC S:0x00
    519 : 11548 :  206594.9
    DAC S:0x00
    520 : 11552 :  206595.8
    DAC S:0x00
    521 : 11556 :  206596.7
    DAC S:0x00
    522 : 11560 :  206597.6
    DAC S:0x00
    523 : 11564 :  206598.5
    DAC S:0x00
    524 : 11568 :  206599.4
    DAC S:0x00
    525 : 11572 :  206600.3
    DAC S:0x00
    526 : 11576 :  206601.2
    DAC S:0x00
    527 : 11580 :  206602.1
    DAC S:0x00
    528 : 11584 :  206603.0
    DAC S:0x00
    529 : 11588 :  206604.0
    DAC S:0x00
    530 : 11592 :  206604.9
    DAC S:0x00
    531 : 11596 :  206605.8
    DAC S:0x00
    532 : 11600 :  206606.7
    DAC S:0x00
    533 : 11604 :  206607.6
    DAC S:0x00
    534 : 11608 :  206608.5
    DAC S:0x00
    535 : 11612 :  206609.4
    DAC S:0x00
    536 : 11616 :  206610.3
    DAC S:0x00
    537 : 11620 :  206611.3
    DAC S:0x00
    538 : 11624 :  206612.2
    DAC S:0x00
    539 : 11628 :  206613.1
    DAC S:0x00
    540 : 11632 :  206614.0
    DAC S:0x00
    541 : 11636 :  206614.9
    DAC S:0x00
    542 : 11640 :  206615.8
    DAC S:0x00
    543 : 11644 :  206616.7
    DAC S:0x00
    544 : 11648 :  206617.6
    DAC S:0x00
    545 : 11652 :  206618.5
    DAC S:0x00
    546 : 11656 :  206619.4
    DAC S:0x00
    547 : 11660 :  206620.3
    DAC S:0x00
    548 : 11664 :  206621.3
    DAC S:0x00
    549 : 11668 :  206622.2
    DAC S:0x00
    550 : 11672 :  206623.1
    DAC S:0x00
    551 : 11676 :  206624.0
    DAC S:0x00
    552 : 11680 :  206624.9
    DAC S:0x00
    553 : 11684 :  206625.8
    DAC S:0x00
    554 : 11688 :  206626.7
    DAC S:0x00
    555 : 11692 :  206627.6
    DAC S:0x00
    556 : 11696 :  206628.5
    DAC S:0x00
    557 : 11700 :  206629.5
    DAC S:0x00
    558 : 11704 :  206630.4
    DAC S:0x00
    559 : 11708 :  206631.3
    DAC S:0x00
    560 : 11712 :  206632.2
    DAC S:0x00
    561 : 11716 :  206633.1
    DAC S:0x00
    562 : 11720 :  206634.0
    DAC S:0x00
    563 : 11724 :  206634.9
    DAC S:0x00
    564 : 11728 :  206635.8
    DAC S:0x00
    565 : 11732 :  206636.7
    DAC S:0x00
    566 : 11736 :  206637.6
    DAC S:0x00
    567 : 11740 :  206638.6
    DAC S:0x00
    568 : 11744 :  206639.5
    DAC S:0x00
    569 : 11748 :  206640.4
    DAC S:0x00
    570 : 11752 :  206641.3
    DAC S:0x00
    571 : 11756 :  206642.2
    DAC S:0x00
    572 : 11760 :  206643.1
    DAC S:0x00
    573 : 11764 :  206644.0
    DAC S:0x00
    574 : 11768 :  206644.9
    DAC S:0x00
    575 : 11772 :  206645.8
    DAC S:0x00
    576 : 11776 :  206646.8
    DAC S:0x00
    577 : 11780 :  206647.7
    DAC S:0x00
    578 : 11784 :  206648.6
    DAC S:0x00
    579 : 11788 :  206649.5
    DAC S:0x00
    580 : 11792 :  206650.4
    DAC S:0x00
    581 : 11796 :  206651.3
    DAC S:0x00
    582 : 11800 :  206652.2
    DAC S:0x00
    583 : 11804 :  206653.1
    DAC S:0x00
    584 : 11808 :  206654.0
    DAC S:0x00
    585 : 11812 :  206655.0
    DAC S:0x00
    586 : 11816 :  206655.9
    DAC S:0x00
    587 : 11820 :  206656.8
    DAC S:0x00
    588 : 11824 :  206657.7
    DAC S:0x00
    589 : 11828 :  206658.6
    DAC S:0x00
    590 : 11832 :  206659.5
    DAC S:0x00
    591 : 11836 :  206660.4
    DAC S:0x00
    592 : 11840 :  206661.3
    DAC S:0x00
    593 : 11844 :  206662.2
    DAC S:0x00
    594 : 11848 :  206663.1
    DAC S:0x00
    595 : 11852 :  206664.0
    DAC S:0x00
    596 : 11856 :  206665.0
    DAC S:0x00
    597 : 11860 :  206665.9
    DAC S:0x00
    598 : 11864 :  206666.8
    DAC S:0x00
    599 : 11868 :  206667.7
    DAC S:0x00
    600 : 11872 :  206668.6
    DAC S:0x00
    601 : 11876 :  206669.5
    DAC S:0x00
    602 : 11880 :  206670.4
    DAC S:0x00
    603 : 11884 :  206671.3
    DAC S:0x00
    604 : 11888 :  206672.3
    DAC S:0x00
    605 : 11892 :  206673.2
    DAC S:0x00
    606 : 11896 :  206674.1
    DAC S:0x00
    607 : 11900 :  206675.0
    DAC S:0x00
    608 : 11904 :  206675.9
    DAC S:0x00
    609 : 11908 :  206676.8
    DAC S:0x00
    610 : 11912 :  206677.7
    DAC S:0x00
    611 : 11916 :  206678.6
    DAC S:0x00
    612 : 11920 :  206679.5
    DAC S:0x00
    613 : 11924 :  206680.4
    DAC S:0x00
    614 : 11928 :  206681.3
    DAC S:0x00
    615 : 11932 :  206682.3
    DAC S:0x00
    616 : 11936 :  206683.2
    DAC S:0x00
    617 : 11940 :  206684.1
    DAC S:0x00
    618 : 11944 :  206685.0
    DAC S:0x00
    619 : 11948 :  206685.9
    DAC S:0x00
    620 : 11952 :  206686.8
    DAC S:0x00
    621 : 11956 :  206687.7
    DAC S:0x00
    622 : 11960 :  206688.6
    DAC S:0x00
    623 : 11964 :  206689.5
    DAC S:0x00
    624 : 11968 :  206690.5
    DAC S:0x00
    625 : 11972 :  206691.4
    DAC S:0x00
    626 : 11976 :  206692.3
    DAC S:0x00
    627 : 11980 :  206693.2
    DAC S:0x00
    628 : 11984 :  206694.1
    DAC S:0x00
    629 : 11988 :  206695.0
    DAC S:0x00
    630 : 11992 :  206695.9
    DAC S:0x00
    631 : 11996 :  206696.8
    DAC S:0x00
    632 : 12000 :  206697.7
    DAC S:0x00
    633 : 12004 :  206698.7
    DAC S:0x00
    634 : 12008 :  206699.6
    DAC S:0x00
    635 : 12012 :  206700.5
    DAC S:0x00
    636 : 12016 :  206701.4
    DAC S:0x00
    637 : 12020 :  206702.3
    DAC S:0x00
    638 : 12024 :  206703.2
    DAC S:0x00
    639 : 12028 :  206704.1
    DAC S:0x00
    640 : 12032 :  206705.0
    DAC S:0x00
    641 : 12036 :  206705.9
    DAC S:0x00
    642 : 12040 :  206706.8
    DAC S:0x00
    643 : 12044 :  206707.8
    DAC S:0x00
    644 : 12048 :  206708.7
    DAC S:0x00
    645 : 12052 :  206709.6
    DAC S:0x00
    646 : 12056 :  206710.5
    DAC S:0x00
    647 : 12060 :  206711.4
    DAC S:0x00
    648 : 12064 :  206712.3
    DAC S:0x00
    649 : 12068 :  206713.2
    DAC S:0x00
    650 : 12072 :  206714.1
    DAC S:0x00
    651 : 12076 :  206715.0
    DAC S:0x00
    652 : 12080 :  206716.0
    DAC S:0x00
    653 : 12084 :  206716.9
    DAC S:0x00
    654 : 12088 :  206717.8
    DAC S:0x00
    655 : 12092 :  206718.7
    DAC S:0x00
    656 : 12096 :  206719.6
    DAC S:0x00
    657 : 12100 :  206720.5
    DAC S:0x00
    658 : 12104 :  206721.4
    DAC S:0x00
    659 : 12108 :  206722.3
    DAC S:0x00
    660 : 12112 :  206723.2
    DAC S:0x00
    661 : 12116 :  206724.1
    DAC S:0x00
    662 : 12120 :  206725.1
    DAC S:0x00
    663 : 12124 :  206726.0
    DAC S:0x00
    664 : 12128 :  206726.9
    DAC S:0x00
    665 : 12132 :  206727.8
    DAC S:0x00
    666 : 12136 :  206728.7
    DAC S:0x00
    667 : 12140 :  206729.6
    DAC S:0x00
    668 : 12144 :  206730.5
    DAC S:0x00
    669 : 12148 :  206731.4
    DAC S:0x00
    670 : 12152 :  206732.3
    DAC S:0x00
    671 : 12156 :  206733.3
    DAC S:0x00
    672 : 12160 :  206734.2
    DAC S:0x00
    673 : 12164 :  206735.1
    DAC S:0x00
    674 : 12168 :  206736.0
    DAC S:0x00
    675 : 12172 :  206736.9
    DAC S:0x00
    676 : 12176 :  206737.8
    DAC S:0x00
    677 : 12180 :  206738.7
    DAC S:0x00
    678 : 12184 :  206739.6
    DAC S:0x00
    679 : 12188 :  206740.5
    DAC S:0x00
    680 : 12192 :  206741.4
    DAC S:0x00
    681 : 12196 :  206742.4
    DAC S:0x00
    682 : 12200 :  206743.3
    DAC S:0x00
    683 : 12204 :  206744.2
    DAC S:0x00
    684 : 12208 :  206745.1
    DAC S:0x00
    685 : 12212 :  206746.0
    DAC S:0x00
    686 : 12216 :  206746.9
    DAC S:0x00
    687 : 12220 :  206747.8
    DAC S:0x00
    688 : 12224 :  206748.7
    DAC S:0x00
    689 : 12228 :  206749.6
    DAC S:0x00
    690 : 12232 :  206750.5
    DAC S:0x00
    691 : 12236 :  206751.5
    DAC S:0x00
    692 : 12240 :  206752.4
    DAC S:0x00
    693 : 12244 :  206753.3
    DAC S:0x00
    694 : 12248 :  206754.2
    DAC S:0x00
    695 : 12252 :  206755.1
    DAC S:0x00
    696 : 12256 :  206756.0
    DAC S:0x00
    697 : 12260 :  206756.9
    DAC S:0x00
    698 : 12264 :  206757.8
    DAC S:0x00
    699 : 12268 :  206758.8
    DAC S:0x00
    700 : 12272 :  206759.7
    DAC S:0x00
    701 : 12276 :  206760.6
    DAC S:0x00
    702 : 12280 :  206761.5
    DAC S:0x00
    703 : 12284 :  206762.4
    DAC S:0x00
    704 : 12288 :  206763.3
    DAC S:0x00
    705 : 12292 :  206764.2
    DAC S:0x00
    706 : 12296 :  206765.1
    DAC S:0x00
    707 : 12300 :  206766.0
    DAC S:0x00
    708 : 12304 :  206766.9
    DAC S:0x00
    709 : 12308 :  206767.8
    DAC S:0x00
    710 : 12312 :  206768.8
    DAC S:0x00
    711 : 12316 :  206769.7
    DAC S:0x00
    712 : 12320 :  206770.6
    DAC S:0x00
    713 : 12324 :  206771.5
    DAC S:0x00
    714 : 12328 :  206772.4
    DAC S:0x00
    715 : 12332 :  206773.3
    DAC S:0x00
    716 : 12336 :  206774.2
    DAC S:0x00
    717 : 12340 :  206775.1
    DAC S:0x00
    718 : 12344 :  206776.0
    DAC S:0x00
    719 : 12348 :  206777.0
    DAC S:0x00
    720 : 12352 :  206777.9
    DAC S:0x00
    721 : 12356 :  206778.8
    DAC S:0x00
    722 : 12360 :  206779.7
    DAC S:0x00
    723 : 12364 :  206780.6
    DAC S:0x00
    724 : 12368 :  206781.5
    DAC S:0x00
    725 : 12372 :  206782.4
    DAC S:0x00
    726 : 12376 :  206783.3
    DAC S:0x00
    727 : 12380 :  206784.2
    DAC S:0x00
    728 : 12384 :  206785.1
    DAC S:0x00
    729 : 12388 :  206786.1
    DAC S:0x00
    730 : 12392 :  206787.0
    DAC S:0x00
    731 : 12396 :  206787.9
    DAC S:0x00
    732 : 12400 :  206788.8
    DAC S:0x00
    733 : 12404 :  206789.7
    DAC S:0x00
    734 : 12408 :  206790.6
    DAC S:0x00
    735 : 12412 :  206791.5
    DAC S:0x00
    736 : 12416 :  206792.4
    DAC S:0x00
    737 : 12420 :  206793.3
    DAC S:0x00
    738 : 12424 :  206794.3
    DAC S:0x00
    739 : 12428 :  206795.2
    DAC S:0x00
    740 : 12432 :  206796.1
    DAC S:0x00
    741 : 12436 :  206797.0
    DAC S:0x00
    742 : 12440 :  206797.9
    DAC S:0x00
    743 : 12444 :  206798.8
    DAC S:0x00
    744 : 12448 :  206799.7
    DAC S:0x00
    745 : 12452 :  206800.6
    DAC S:0x00
    746 : 12456 :  206801.5
    DAC S:0x00
    747 : 12460 :  206802.5
    DAC S:0x00
    748 : 12464 :  206803.4
    DAC S:0x00
    749 : 12468 :  206804.3
    DAC S:0x00
    750 : 12472 :  206805.2
    DAC S:0x00
    751 : 12476 :  206806.1
    DAC S:0x00
    752 : 12480 :  206807.0
    DAC S:0x00
    753 : 12484 :  206807.9
    DAC S:0x00
    754 : 12488 :  206808.8
    DAC S:0x00
    755 : 12492 :  206809.7
    DAC S:0x00
    756 : 12496 :  206810.6
    DAC S:0x00
    757 : 12500 :  206811.5
    DAC S:0x00
    758 : 12504 :  206812.5
    DAC S:0x00
    759 : 12508 :  206813.4
    DAC S:0x00
    760 : 12512 :  206814.3
    DAC S:0x00
    761 : 12516 :  206815.2
    DAC S:0x00
    762 : 12520 :  206816.1
    DAC S:0x00
    763 : 12524 :  206817.0
    DAC S:0x00
    764 : 12528 :  206817.9
    DAC S:0x00
    765 : 12532 :  206818.8
    DAC S:0x00
    766 : 12536 :  206819.8
    DAC S:0x00
    767 : 12540 :  206820.7
    DAC S:0x00
    768 : 12544 :  206821.6
    DAC S:0x00
    769 : 12548 :  206822.5
    DAC S:0x00
    770 : 12552 :  206823.4
    DAC S:0x00
    771 : 12556 :  206824.3
    DAC S:0x00
    772 : 12560 :  206825.2
    DAC S:0x00
    773 : 12564 :  206826.1
    DAC S:0x00
    774 : 12568 :  206827.0
    DAC S:0x00
    775 : 12572 :  206827.9
    DAC S:0x00
    776 : 12576 :  206828.8
    DAC S:0x00
    777 : 12580 :  206829.8
    DAC S:0x00
    778 : 12584 :  206830.7
    DAC S:0x00
    779 : 12588 :  206831.6
    DAC S:0x00
    780 : 12592 :  206832.5
    DAC S:0x00
    781 : 12596 :  206833.4
    DAC S:0x00
    782 : 12600 :  206834.3
    DAC S:0x00
    783 : 12604 :  206835.2
    DAC S:0x00
    784 : 12608 :  206836.1
    DAC S:0x00
    785 : 12612 :  206837.0
    DAC S:0x00
    786 : 12616 :  206838.0
    DAC S:0x00
    787 : 12620 :  206838.9
    DAC S:0x00
    788 : 12624 :  206839.8
    DAC S:0x00
    789 : 12628 :  206840.7
    DAC S:0x00
    790 : 12632 :  206841.6
    DAC S:0x00
    791 : 12636 :  206842.5
    DAC S:0x00
    792 : 12640 :  206843.4
    DAC S:0x00
    793 : 12644 :  206844.3
    DAC S:0x00
    794 : 12648 :  206845.2
    DAC S:0x00
    795 : 12652 :  206846.2
    DAC S:0x00
    796 : 12656 :  206847.1
    DAC S:0x00
    797 : 12660 :  206848.0
    DAC S:0x00
    798 : 12664 :  206848.9
    DAC S:0x00
    799 : 12668 :  206849.8
    DAC S:0x00
    800 : 12672 :  206850.7
    DAC S:0x00
    801 : 12676 :  206851.6
    DAC S:0x00
    802 : 12680 :  206852.5
    DAC S:0x00
    803 : 12684 :  206853.4
    DAC S:0x00
    804 : 12688 :  206854.3
    DAC S:0x00
    805 : 12692 :  206855.3
    DAC S:0x00
    806 : 12696 :  206856.2
    DAC S:0x00
    807 : 12700 :  206857.1
    DAC S:0x00
    808 : 12704 :  206858.0
    DAC S:0x00
    809 : 12708 :  206858.9
    DAC S:0x00
    810 : 12712 :  206859.8
    DAC S:0x00
    811 : 12716 :  206860.7
    DAC S:0x00
    812 : 12720 :  206861.6
    DAC S:0x00
    813 : 12724 :  206862.5
    DAC S:0x00
    814 : 12728 :  206863.5
    DAC S:0x00
    815 : 12732 :  206864.4
    DAC S:0x00
    816 : 12736 :  206865.3
    DAC S:0x00
    817 : 12740 :  206866.2
    DAC S:0x00
    818 : 12744 :  206867.1
    DAC S:0x00
    819 : 12748 :  206868.0
    DAC S:0x00
    820 : 12752 :  206868.9
    DAC S:0x00
    821 : 12756 :  206869.8
    DAC S:0x00
    822 : 12760 :  206870.7
    DAC S:0x00
    823 : 12764 :  206871.6
    DAC S:0x00
    824 : 12768 :  206872.6
    DAC S:0x00
    825 : 12772 :  206873.5
    DAC S:0x00
    826 : 12776 :  206874.4
    DAC S:0x00
    827 : 12780 :  206875.3
    DAC S:0x00
    828 : 12784 :  206876.2
    DAC S:0x00
    829 : 12788 :  206877.1
    DAC S:0x00
    830 : 12792 :  206878.0
    DAC S:0x00
    831 : 12796 :  206878.9
    DAC S:0x00
    832 : 12800 :  206879.8
    DAC S:0x00
    833 : 12804 :  206880.8
    DAC S:0x00
    834 : 12808 :  206881.7
    DAC S:0x00
    835 : 12812 :  206882.6
    DAC S:0x00
    836 : 12816 :  206883.5
    DAC S:0x00
    837 : 12820 :  206884.4
    DAC S:0x00
    838 : 12824 :  206885.3
    DAC S:0x00
    839 : 12828 :  206886.2
    DAC S:0x00
    840 : 12832 :  206887.1
    DAC S:0x00
    841 : 12836 :  206888.0
    DAC S:0x00
    842 : 12840 :  206888.9
    DAC S:0x00
    843 : 12844 :  206889.9
    DAC S:0x00
    844 : 12848 :  206890.8
    DAC S:0x00
    845 : 12852 :  206891.7
    DAC S:0x00
    846 : 12856 :  206892.6
    DAC S:0x00
    847 : 12860 :  206893.5
    DAC S:0x00
    848 : 12864 :  206894.4
    DAC S:0x00
    849 : 12868 :  206895.3
    DAC S:0x00
    850 : 12872 :  206896.2
    DAC S:0x00
    851 : 12876 :  206897.1
    DAC S:0x00
    852 : 12880 :  206898.0
    DAC S:0x00
    853 : 12884 :  206899.0
    DAC S:0x00
    854 : 12888 :  206899.9
    DAC S:0x00
    855 : 12892 :  206900.8
    DAC S:0x00
    856 : 12896 :  206901.7
    DAC S:0x00
    857 : 12900 :  206902.6
    DAC S:0x00
    858 : 12904 :  206903.5
    DAC S:0x00
    859 : 12908 :  206904.4
    DAC S:0x00
    860 : 12912 :  206905.3
    DAC S:0x00
    861 : 12916 :  206906.3
    DAC S:0x00
    862 : 12920 :  206907.2
    DAC S:0x00
    863 : 12924 :  206908.1
    DAC S:0x00
    864 : 12928 :  206909.0DAC S:0x
    00
    865 : 12932 :  206909.9
    DAC S:0x00
    866 : 12936 :  206910.8
    DAC S:0x00
    867 : 12940 :  206911.7
    DAC S:0x00
    868 : 12944 :  206912.6
    DAC S:0x00
    869 : 12948 :  206913.5
    DAC S:0x00
    870 : 12952 :  206914.4
    DAC S:0x00
    871 : 12956 :  206915.3
    DAC S:0x00
    872 : 12960 :  206916.3
    DAC S:0x00
    873 : 12964 :  206917.2
    DAC S:0x00
    874 : 12968 :  206918.1
    DAC S:0x00
    875 : 12972 :  206919.0
    DAC S:0x00
    876 : 12976 :  206919.9
    DAC S:0x00
    877 : 12980 :  206920.8
    DAC S:0x00
    878 : 12984 :  206921.7
    DAC S:0x00
    879 : 12988 :  206922.6
    DAC S:0x00
    880 : 12992 :  206923.5
    DAC S:0x00
    881 : 12996 :  206924.5
    DAC S:0x00
    882 : 13000 :  206925.4
    DAC S:0x00
    883 : 13004 :  206926.3
    DAC S:0x00
    884 : 13008 :  206927.2
    DAC S:0x00
    885 : 13012 :  206928.1
    DAC S:0x00
    886 : 13016 :  206929.0
    DAC S:0x00
    887 : 13020 :  206929.9
    DAC S:0x00
    888 : 13024 :  206930.8
    DAC S:0x00
    889 : 13028 :  206931.7
    DAC S:0x00
    890 : 13032 :  206932.6
    DAC S:0x00
    891 : 13036 :  206933.6
    DAC S:0x00
    892 : 13040 :  206934.5
    DAC S:0x00
    893 : 13044 :  206935.4
    DAC S:0x00
    894 : 13048 :  206936.3
    DAC S:0x00
    895 : 13052 :  206937.2
    DAC S:0x00
    896 : 13056 :  206938.1
    DAC S:0x00
    897 : 13060 :  206939.0
    DAC S:0x00
    898 : 13064 :  206939.9
    DAC S:0x00
    899 : 13068 :  206940.8
    DAC S:0x00
    900 : 13072 :  206941.8
    DAC S:0x00
    901 : 13076 :  206942.7
    DAC S:0x00
    902 : 13080 :  206943.6
    DAC S:0x00
    903 : 13084 :  206944.5
    DAC S:0x00
    904 : 13088 :  206945.4
    DAC S:0x00
    905 : 13092 :  206946.3
    DAC S:0x00
    906 : 13096 :  206947.2
    DAC S:0x00
    907 : 13100 :  206948.1
    DAC S:0x00
    908 : 13104 :  206949.0
    DAC S:0x00
    909 : 13108 :  206950.0
    DAC S:0x00
    910 : 13112 :  206950.9
    DAC S:0x00
    911 : 13116 :  206951.8
    DAC S:0x00
    912 : 13120 :  206952.7
    DAC S:0x00
    913 : 13124 :  206953.6
    DAC S:0x00
    914 : 13128 :  206954.5
    DAC S:0x00
    915 : 13132 :  206955.4
    DAC S:0x00
    916 : 13136 :  206956.3
    DAC S:0x00
    917 : 13140 :  206957.2
    DAC S:0x00
    918 : 13144 :  206958.1
    DAC S:0x00
    919 : 13148 :  206959.0
    DAC S:0x00
    920 : 13152 :  206960.0
    DAC S:0x00
    921 : 13156 :  206960.9
    DAC S:0x00
    922 : 13160 :  206961.8
    DAC S:0x00
    923 : 13164 :  206962.7
    DAC S:0x00
    924 : 13168 :  206963.6
    DAC S:0x00
    925 : 13172 :  206964.5
    DAC S:0x00
    926 : 13176 :  206965.4
    DAC S:0x00
    927 : 13180 :  206966.3
    DAC S:0x00
    928 : 13184 :  206967.3
    DAC S:0x00
    929 : 13188 :  206968.2
    DAC S:0x00
    930 : 13192 :  206969.1
    DAC S:0x00
    931 : 13196 :  206970.0
    DAC S:0x00
    932 : 13200 :  206970.9
    DAC S:0x00
    933 : 13204 :  206971.8
    DAC S:0x00
    934 : 13208 :  206972.7
    DAC S:0x00
    935 : 13212 :  206973.6
    DAC S:0x00
    936 : 13216 :  206974.5
    DAC S:0x00
    937 : 13220 :  206975.4
    DAC S:0x00
    938 : 13224 :  206976.3
    DAC S:0x00
    939 : 13228 :  206977.3
    DAC S:0x00
    940 : 13232 :  206978.2
    DAC S:0x00
    941 : 13236 :  206979.1
    DAC S:0x00
    942 : 13240 :  206980.0
    DAC S:0x00
    943 : 13244 :  206980.9
    DAC S:0x00
    944 : 13248 :  206981.8
    DAC S:0x00
    945 : 13252 :  206982.7
    DAC S:0x00
    946 : 13256 :  206983.6
    DAC S:0x00
    947 : 13260 :  206984.5
    DAC S:0x00
    948 : 13264 :  206985.5
    DAC S:0x00
    949 : 13268 :  206986.4
    DAC S:0x00
    950 : 13272 :  206987.3
    DAC S:0x00
    951 : 13276 :  206988.2
    DAC S:0x00
    952 : 13280 :  206989.1
    DAC S:0x00
    953 : 13284 :  206990.0
    DAC S:0x00
    954 : 13288 :  206990.9
    DAC S:0x00
    955 : 13292 :  206991.8
    DAC S:0x00
    956 : 13296 :  206992.7
    DAC S:0x00
    957 : 13300 :  206993.7
    DAC S:0x00
    958 : 13304 :  206994.6
    DAC S:0x00
    959 : 13308 :  206995.5
    DAC S:0x00
    960 : 13312 :  206996.4
    DAC S:0x00
    961 : 13316 :  206997.3
    DAC S:0x00
    962 : 13320 :  206998.2
    DAC S:0x00
    963 : 13324 :  206999.1
    DAC S:0x00
    964 : 13328 :  207000.0
    DAC S:0x00
    965 : 13332 :  207000.9
    DAC S:0x00
    966 : 13336 :  207001.8
    DAC S:0x00
    967 : 13340 :  207002.8
    DAC S:0x00
    968 : 13344 :  207003.7
    DAC S:0x00
    969 : 13348 :  207004.6
    DAC S:0x00
    970 : 13352 :  207005.5
    DAC S:0x00
    971 : 13356 :  207006.4
    DAC S:0x00
    972 : 13360 :  207007.3
    DAC S:0x00
    973 : 13364 :  207008.2
    DAC S:0x00
    974 : 13368 :  207009.1
    DAC S:0x00
    975 : 13372 :  207010.0
    DAC S:0x00
    976 : 13376 :  207011.0
    DAC S:0x00
    977 : 13380 :  207011.9
    DAC S:0x00
    978 : 13384 :  207012.8
    DAC S:0x00
    979 : 13388 :  207013.7
    DAC S:0x00
    980 : 13392 :  207014.6
    DAC S:0x00
    981 : 13396 :  207015.5
    DAC S:0x00
    982 : 13400 :  207016.4
    DAC S:0x00
    983 : 13404 :  207017.3
    DAC S:0x00
    984 : 13408 :  207018.2
    DAC S:0x00
    985 : 13412 :  207019.1
    DAC S:0x00
    986 : 13416 :  207020.1
    DAC S:0x00
    987 : 13420 :  207021.0
    DAC S:0x00
    988 : 13424 :  207021.9
    DAC S:0x00
    989 : 13428 :  207022.8
    DAC S:0x00
    990 : 13432 :  207023.7
    DAC S:0x00
    991 : 13436 :  207024.6
    DAC S:0x00
    992 : 13440 :  207025.5
    DAC S:0x00
    993 : 13444 :  207026.4
    DAC S:0x00
    994 : 13448 :  207027.3
    DAC S:0x00
    995 : 13452 :  207028.3
    DAC S:0x00
    996 : 13456 :  207029.2
    DAC S:0x00
    997 : 13460 :  207030.1
    DAC S:0x00
    998 : 13464 :  207031.0
    DAC S:0x00
    999 : 13468 :  207031.9
    DAC S:0x00
    1000 : 13472 :  207032.8
    DAC S:0x00
    1001 : 13476 :  207033.7
    DAC S:0x00
    1002 : 13480 :  207034.6
    DAC S:0x00
    1003 : 13484 :  207035.5
    DAC S:0x00
    1004 : 13488 :  207036.4
    DAC S:0x00
    1005 : 13492 :  207037.4
    DAC S:0x00
    1006 : 13496 :  207038.3
    DAC S:0x00
    1007 : 13500 :  207039.2
    DAC S:0x00
    1008 : 13504 :  207040.1
    DAC S:0x00
    1009 : 13508 :  207041.0
    DAC S:0x00
    1010 : 13512 :  207041.9
    DAC S:0x00
    1011 : 13516 :  207042.8
    DAC S:0x00
    1012 : 13520 :  207043.7
    DAC S:0x00
    1013 : 13524 :  207044.6
    DAC S:0x00
    1014 : 13528 :  207045.5
    DAC S:0x00
    1015 : 13532 :  207046.5
    DAC S:0x00
    1016 : 13536 :  207047.4
    DAC S:0x00
    1017 : 13540 :  207048.3
    DAC S:0x00
    1018 : 13544 :  207049.2
    DAC S:0x00
    1019 : 13548 :  207050.1
    DAC S:0x00
    1020 : 13552 :  207051.0
    DAC S:0x00
    1021 : 13556 :  207051.9
    DAC S:0x00
    1022 : 13560 :  207052.8
    DAC S:0x00
    1023 : 13564 :  207053.8
    DAC S:0x00
    0 : 9472 :  207054.7
    DAC S:0x00
    1 : 9476 :  207055.6
    DAC S:0x00
    2 : 9480 :  207056.5
    DAC S:0x00
    3 : 9484 :  207057.4
    DAC S:0x00
    4 : 9488 :  207058.3
    DAC S:0x00
    5 : 9492 :  207059.2
    DAC S:0x00
    6 : 9496 :  207060.1
    DAC S:0x00
    7 : 9500 :  207061.0
    DAC S:0x00
    8 : 9504 :  207061.9
    DAC S:0x00
    9 : 9508 :  207062.8
    DAC S:0x00
    10 : 9512 :  207063.8
    DAC S:0x00
    11 : 9516 :  207064.7
    DAC S:0x00
    12 : 9520 :  207065.6
    DAC S:0x00
    13 : 9524 :  207066.5
    DAC S:0x00
    14 : 9528 :  207067.4
    DAC S:0x00
    15 : 9532 :  207068.3
    DAC S:0x00
    16 : 9536 :  207069.2
    DAC S:0x00
    17 : 9540 :  207070.1
    DAC S:0x00
    18 : 9544 :  207071.0
    DAC S:0x00
    19 : 9548 :  207072.0
    DAC S:0x00
    20 : 9552 :  207072.9
    DAC S:0x00
    21 : 9556 :  207073.8
    DAC S:0x00
    22 : 9560 :  207074.7
    DAC S:0x00
    23 : 9564 :  207075.6
    DAC S:0x00
    24 : 9568 :  207076.5
    DAC S:0x00
    25 : 9572 :  207077.4
    DAC S:0x00
    26 : 9576 :  207078.3
    DAC S:0x00
    27 : 9580 :  207079.2
    DAC S:0x00
    28 : 9584 :  207080.1
    DAC S:0x00
    29 : 9588 :  207081.1
    DAC S:0x00
    30 : 9592 :  207082.0
    DAC S:0x00
    31 : 9596 :  207082.9
    DAC S:0x00
    32 : 9600 :  207083.8
    DAC S:0x00
    33 : 9604 :  207084.7
    DAC S:0x00
    34 : 9608 :  207085.6
    DAC S:0x00
    35 : 9612 :  207086.5
    DAC S:0x00
    36 : 9616 :  207087.4
    DAC S:0x00
    37 : 9620 :  207088.3
    DAC S:0x00
    38 : 9624 :  207089.3
    DAC S:0x00
    39 : 9628 :  207090.2
    DAC S:0x00
    40 : 9632 :  207091.1
    DAC S:0x00
    41 : 9636 :  207092.0
    DAC S:0x00
    42 : 9640 :  207092.9
    DAC S:0x00
    43 : 9644 :  207093.8
    DAC S:0x00
    44 : 9648 :  207094.7
    DAC S:0x00
    45 : 9652 :  207095.6
    DAC S:0x00
    46 : 9656 :  207096.5
    DAC S:0x00
    47 : 9660 :  207097.5
    DAC S:0x00
    48 : 9664 :  207098.4
    DAC S:0x00
    49 : 9668 :  207099.3
    DAC S:0x00
    50 : 9672 :  207100.2
    DAC S:0x00
    51 : 9676 :  207101.1
    DAC S:0x00
    52 : 9680 :  207102.0
    DAC S:0x00
    53 : 9684 :  207102.9
    DAC S:0x00
    54 : 9688 :  207103.8
    DAC S:0x00
    55 : 9692 :  207104.7
    DAC S:0x00
    56 : 9696 :  207105.6
    DAC S:0x00
    57 : 9700 :  207106.5
    DAC S:0x00
    58 : 9704 :  207107.5
    DAC S:0x00
    59 : 9708 :  207108.4
    DAC S:0x00
    60 : 9712 :  207109.3
    DAC S:0x00
    61 : 9716 :  207110.2
    DAC S:0x00
    62 : 9720 :  207111.1
    DAC S:0x00
    63 : 9724 :  207112.0
    DAC S:0x00
    64 : 9728 :  207112.9
    DAC S:0x00
    65 : 9732 :  207113.8
    DAC S:0x00
    66 : 9736 :  207114.8
    DAC S:0x00
    67 : 9740 :  207115.7
    DAC S:0x00
    68 : 9744 :  207116.6
    DAC S:0x00
    69 : 9748 :  207117.5
    DAC S:0x00
    70 : 9752 :  207118.4
    DAC S:0x00
    71 : 9756 :  207119.3
    DAC S:0x00
    72 : 9760 :  207120.2
    DAC S:0x00
    73 : 9764 :  207121.1
    DAC S:0x00
    74 : 9768 :  207122.0
    DAC S:0x00
    75 : 9772 :  207122.9
    DAC S:0x00
    76 : 9776 :  207123.9
    DAC S:0x00
    77 : 9780 :  207124.8
    DAC S:0x00
    78 : 9784 :  207125.7
    DAC S:0x00
    79 : 9788 :  207126.6
    DAC S:0x00
    80 : 9792 :  207127.5
    DAC S:0x00
    81 : 9796 :  207128.4
    DAC S:0x00
    82 : 9800 :  207129.3
    DAC S:0x00
    83 : 9804 :  207130.2
    DAC S:0x00
    84 : 9808 :  207131.1
    DAC S:0x00
    85 : 9812 :  207132.0
    DAC S:0x00
    86 : 9816 :  207133.0
    DAC S:0x00
    87 : 9820 :  207133.9
    DAC S:0x00
    88 : 9824 :  207134.8
    DAC S:0x00
    89 : 9828 :  207135.7
    DAC S:0x00
    90 : 9832 :  207136.6
    DAC S:0x00
    91 : 9836 :  207137.5
    DAC S:0x00
    92 : 9840 :  207138.4
    DAC S:0x00
    93 : 9844 :  207139.3
    DAC S:0x00
    94 : 9848 :  207140.2
    DAC S:0x00
    95 : 9852 :  207141.2
    DAC S:0x00
    96 : 9856 :  207142.1
    DAC S:0x00
    97 : 9860 :  207143.0
    DAC S:0x00
    98 : 9864 :  207143.9
    DAC S:0x00
    99 : 9868 :  207144.8
    DAC S:0x00
    100 : 9872 :  207145.7
    DAC S:0x00
    101 : 9876 :  207146.6
    DAC S:0x00
    102 : 9880 :  207147.5
    DAC S:0x00
    103 : 9884 :  207148.4
    DAC S:0x00
    104 : 9888 :  207149.3
    DAC S:0x00
    105 : 9892 :  207150.3
    DAC S:0x00
    106 : 9896 :  207151.2
    DAC S:0x00
    107 : 9900 :  207152.1
    DAC S:0x00
    108 : 9904 :  207153.0
    DAC S:0x00
    109 : 9908 :  207153.9
    DAC S:0x00
    110 : 9912 :  207154.8
    DAC S:0x00
    111 : 9916 :  207155.7
    DAC S:0x00
    112 : 9920 :  207156.6
    DAC S:0x00
    113 : 9924 :  207157.5
    DAC S:0x00
    114 : 9928 :  207158.5
    DAC S:0x00
    115 : 9932 :  207159.4
    DAC S:0x00
    116 : 9936 :  207160.3
    DAC S:0x00
    117 : 9940 :  207161.2
    DAC S:0x00
    118 : 9944 :  207162.1
    DAC S:0x00
    119 : 9948 :  207163.0
    DAC S:0x00
    120 : 9952 :  207163.9
    DAC S:0x00
    121 : 9956 :  207164.8
    DAC S:0x00
    122 : 9960 :  207165.7
    DAC S:0x00
    123 : 9964 :  207166.6
    DAC S:0x00
    124 : 9968 :  207167.6
    DAC S:0x00
    125 : 9972 :  207168.5
    DAC S:0x00
    126 : 9976 :  207169.4
    DAC S:0x00
    127 : 9980 :  207170.3
    DAC S:0x00
    128 : 9984 :  207171.2
    DAC S:0x00
    129 : 9988 :  207172.1
    DAC S:0x00
    130 : 9992 :  207173.0
    DAC S:0x00
    131 : 9996 :  207173.9
    DAC S:0x00
    132 : 10000 :  207174.8
    DAC S:0x00
    133 : 10004 :  207175.8
    DAC S:0x00
    134 : 10008 :  207176.7
    DAC S:0x00
    135 : 10012 :  207177.6
    DAC S:0x00
    136 : 10016 :  207178.5
    DAC S:0x00
    137 : 10020 :  207179.4
    DAC S:0x00
    138 : 10024 :  207180.3
    DAC S:0x00
    139 : 10028 :  207181.2
    DAC S:0x00
    140 : 10032 :  207182.1
    DAC S:0x00
    141 : 10036 :  207183.0
    DAC S:0x00
    142 : 10040 :  207183.9
    DAC S:0x00
    143 : 10044 :  207184.9
    DAC S:0x00
    144 : 10048 :  207185.8
    DAC S:0x00
    145 : 10052 :  207186.7
    DAC S:0x00
    146 : 10056 :  207187.6
    DAC S:0x00
    147 : 10060 :  207188.5
    DAC S:0x00
    148 : 10064 :  207189.4
    DAC S:0x00
    149 : 10068 :  207190.3
    DAC S:0x00
    150 : 10072 :  207191.2
    DAC S:0x00
    151 : 10076 :  207192.1
    DAC S:0x00
    152 : 10080 :  207193.0
    DAC S:0x00
    153 : 10084 :  207194.0
    DAC S:0x00
    154 : 10088 :  207194.9
    DAC S:0x00
    155 : 10092 :  207195.8
    DAC S:0x00
    156 : 10096 :  207196.7
    DAC S:0x00
    157 : 10100 :  207197.6
    DAC S:0x00
    158 : 10104 :  207198.5
    DAC S:0x00
    159 : 10108 :  207199.4
    DAC S:0x00
    160 : 10112 :  207200.3
    DAC S:0x00
    161 : 10116 :  207201.3
    DAC S:0x00
    162 : 10120 :  207202.2
    DAC S:0x00
    163 : 10124 :  207203.1
    DAC S:0x00
    164 : 10128 :  207204.0
    DAC S:0x00
    165 : 10132 :  207204.9
    DAC S:0x00
    166 : 10136 :  207205.8
    DAC S:0x00
    167 : 10140 :  207206.7
    DAC S:0x00
    168 : 10144 :  207207.6
    DAC S:0x00
    169 : 10148 :  207208.5
    DAC S:0x00
    170 : 10152 :  207209.4
    DAC S:0x00
    171 : 10156 :  207210.3
    DAC S:0x00
    172 : 10160 :  207211.3
    DAC S:0x00
    173 : 10164 :  207212.2
    DAC S:0x00
    174 : 10168 :  207213.1
    DAC S:0x00
    175 : 10172 :  207214.0
    DAC S:0x00
    176 : 10176 :  207214.9
    DAC S:0x00
    177 : 10180 :  207215.8
    DAC S:0x00
    178 : 10184 :  207216.7
    DAC S:0x00
    179 : 10188 :  207217.6
    DAC S:0x00
    180 : 10192 :  207218.5
    DAC S:0x00
    181 : 10196 :  207219.5
    DAC S:0x00
    182 : 10200 :  207220.4
    DAC S:0x00
    183 : 10204 :  207221.3
    DAC S:0x00
    184 : 10208 :  207222.2
    DAC S:0x00
    185 : 10212 :  207223.1
    DAC S:0x00
    186 : 10216 :  207224.0
    DAC S:0x00
    187 : 10220 :  207224.9
    DAC S:0x00
    188 : 10224 :  207225.8
    DAC S:0x00
    189 : 10228 :  207226.7
    DAC S:0x00
    190 : 10232 :  207227.6
    DAC S:0x00
    191 : 10236 :  207228.6
    DAC S:0x00
    192 : 10240 :  207229.5
    DAC S:0x00
    193 : 10244 :  207230.4
    DAC S:0x00
    194 : 10248 :  207231.3
    DAC S:0x00
    195 : 10252 :  207232.2
    DAC S:0x00
    196 : 10256 :  207233.1
    DAC S:0x00
    197 : 10260 :  207234.0
    DAC S:0x00
    198 : 10264 :  207234.9
    DAC S:0x00
    199 : 10268 :  207235.8
    DAC S:0x00
    200 : 10272 :  207236.8
    DAC S:0x00
    201 : 10276 :  207237.7
    DAC S:0x00
    202 : 10280 :  207238.6
    DAC S:0x00
    203 : 10284 :  207239.5
    DAC S:0x00
    204 : 10288 :  207240.4
    DAC S:0x00
    205 : 10292 :  207241.3
    DAC S:0x00
    206 : 10296 :  207242.2
    DAC S:0x00
    207 : 10300 :  207243.1
    DAC S:0x00
    208 : 10304 :  207244.0
    DAC S:0x00
    209 : 10308 :  207245.0
    DAC S:0x00
    210 : 10312 :  207245.9
    DAC S:0x00
    211 : 10316 :  207246.8
    DAC S:0x00
    212 : 10320 :  207247.7
    DAC S:0x00
    213 : 10324 :  207248.6
    DAC S:0x00
    214 : 10328 :  207249.5
    DAC S:0x00
    215 : 10332 :  207250.4
    DAC S:0x00
    216 : 10336 :  207251.3
    DAC S:0x00
    217 : 10340 :  207252.2
    DAC S:0x00
    218 : 10344 :  207253.1
    DAC S:0x00
    219 : 10348 :  207254.0
    DAC S:0x00
    220 : 10352 :  207255.0
    DAC S:0x00
    221 : 10356 :  207255.9
    DAC S:0x00
    222 : 10360 :  207256.8
    DAC S:0x00
    223 : 10364 :  207257.7
    DAC S:0x00
    224 : 10368 :  207258.6
    DAC S:0x00
    225 : 10372 :  207259.5
    DAC S:0x00
    226 : 10376 :  207260.4
    DAC S:0x00
    227 : 10380 :  207261.3
    DAC S:0x00
    228 : 10384 :  207262.3
    DAC S:0x00
    229 : 10388 :  207263.2
    DAC S:0x00
    230 : 10392 :  207264.1
    DAC S:0x00
    231 : 10396 :  207265.0
    DAC S:0x00
    232 : 10400 :  207265.9
    DAC S:0x00
    233 : 10404 :  207266.8
    DAC S:0x00
    234 : 10408 :  207267.7
    DAC S:0x00
    235 : 10412 :  207268.6
    DAC S:0x00
    236 : 10416 :  207269.5
    DAC S:0x00
    237 : 10420 :  207270.4
    DAC S:0x00
    238 : 10424 :  207271.4
    DAC S:0x00
    239 : 10428 :  207272.3
    DAC S:0x00
    240 : 10432 :  207273.2
    DAC S:0x00
    241 : 10436 :  207274.1
    DAC S:0x00
    242 : 10440 :  207275.0
    DAC S:0x00
    243 : 10444 :  207275.9
    DAC S:0x00
    244 : 10448 :  207276.8
    DAC S:0x00
    245 : 10452 :  207277.7
    DAC S:0x00
    246 : 10456 :  207278.6
    DAC S:0x00
    247 : 10460 :  207279.5
    DAC S:0x00
    248 : 10464 :  207280.5
    DAC S:0x00
    249 : 10468 :  207281.4
    DAC S:0x00
    250 : 10472 :  207282.3
    DAC S:0x00
    251 : 10476 :  207283.2
    DAC S:0x00
    252 : 10480 :  207284.1
    DAC S:0x00
    253 : 10484 :  207285.0
    DAC S:0x00
    254 : 10488 :  207285.9
    DAC S:0x00
    255 : 10492 :  207286.8
    DAC S:0x00
    256 : 10496 :  207287.7
    DAC S:0x00
    257 : 10500 :  207288.7
    DAC S:0x00
    258 : 10504 :  207289.6
    DAC S:0x00
    259 : 10508 :  207290.5
    DAC S:0x00
    260 : 10512 :  207291.4
    DAC S:0x00
    261 : 10516 :  207292.3
    DAC S:0x00
    262 : 10520 :  207293.2
    DAC S:0x00
    263 : 10524 :  207294.1
    DAC S:0x00
    264 : 10528 :  207295.0
    DAC S:0x00
    265 : 10532 :  207295.9
    DAC S:0x00
    266 : 10536 :  207296.8
    DAC S:0x00
    267 : 10540 :  207297.8
    DAC S:0x00
    268 : 10544 :  207298.7
    DAC S:0x00
    269 : 10548 :  207299.6
    DAC S:0x00
    270 : 10552 :  207300.5
    DAC S:0x00
    271 : 10556 :  207301.4
    DAC S:0x00
    272 : 10560 :  207302.3
    DAC S:0x00
    273 : 10564 :  207303.2
    DAC S:0x00
    274 : 10568 :  207304.1
    DAC S:0x00
    275 : 10572 :  207305.0
    DAC S:0x00
    276 : 10576 :  207306.0
    DAC S:0x00
    277 : 10580 :  207306.9
    DAC S:0x00
    278 : 10584 :  207307.8
    DAC S:0x00
    279 : 10588 :  207308.7
    DAC S:0x00
    280 : 10592 :  207309.6
    DAC S:0x00
    281 : 10596 :  207310.5
    DAC S:0x00
    282 : 10600 :  207311.4
    DAC S:0x00
    283 : 10604 :  207312.3
    DAC S:0x00
    284 : 10608 :  207313.2
    DAC S:0x00
    285 : 10612 :  207314.1
    DAC S:0x00
    286 : 10616 :  207315.1
    DAC S:0x00
    287 : 10620 :  207316.0
    DAC S:0x00
    288 : 10624 :  207316.9
    DAC S:0x00
    289 : 10628 :  207317.8
    DAC S:0x00
    290 : 10632 :  207318.7
    DAC S:0x00
    291 : 10636 :  207319.6
    DAC S:0x00
    292 : 10640 :  207320.5
    DAC S:0x00
    293 : 10644 :  207321.4
    DAC S:0x00
    294 : 10648 :  207322.3
    DAC S:0x00
    295 : 10652 :  207323.3
    DAC S:0x00
    296 : 10656 :  207324.2
    DAC S:0x00
    297 : 10660 :  207325.1
    DAC S:0x00
    298 : 10664 :  207326.0
    DAC S:0x00
    299 : 10668 :  207326.9
    DAC S:0x00
    300 : 10672 :  207327.8
    DAC S:0x00
    301 : 10676 :  207328.7
    DAC S:0x00
    302 : 10680 :  207329.6
    DAC S:0x00
    303 : 10684 :  207330.5
    DAC S:0x00
    304 : 10688 :  207331.4
    DAC S:0x00
    305 : 10692 :  207332.4
    DAC S:0x00
    306 : 10696 :  207333.3
    DAC S:0x00
    307 : 10700 :  207334.2
    DAC S:0x00
    308 : 10704 :  207335.1
    DAC S:0x00
    309 : 10708 :  207336.0
    DAC S:0x00
    310 : 10712 :  207336.9
    DAC S:0x00
    311 : 10716 :  207337.8
    DAC S:0x00
    312 : 10720 :  207338.7
    DAC S:0x00
    313 : 10724 :  207339.6
    DAC S:0x00
    314 : 10728 :  207340.5
    DAC S:0x00
    315 : 10732 :  207341.5
    DAC S:0x00
    316 : 10736 :  207342.4
    DAC S:0x00
    317 : 10740 :  207343.3
    DAC S:0x00
    318 : 10744 :  207344.2
    DAC S:0x00
    319 : 10748 :  207345.1
    DAC S:0x00
    320 : 10752 :  207346.0
    DAC S:0x00
    321 : 10756 :  207346.9
    DAC S:0x00
    322 : 10760 :  207347.8
    DAC S:0x00
    323 : 10764 :  207348.8
    DAC S:0x00
    324 : 10768 :  207349.7
    DAC S:0x00
    325 : 10772 :  207350.6
    DAC S:0x00
    326 : 10776 :  207351.5
    DAC S:0x00
    327 : 10780 :  207352.4
    DAC S:0x00
    328 : 10784 :  207353.3
    DAC S:0x00
    329 : 10788 :  207354.2
    DAC S:0x00
    330 : 10792 :  207355.1
    DAC S:0x00
    331 : 10796 :  207356.0
    DAC S:0x00
    332 : 10800 :  207356.9
    DAC S:0x00
    333 : 10804 :  207357.8
    DAC S:0x00
    334 : 10808 :  207358.8
    DAC S:0x00
    335 : 10812 :  207359.7
    DAC S:0x00
    336 : 10816 :  207360.6
    DAC S:0x00
    337 : 10820 :  207361.5
    DAC S:0x00
    338 : 10824 :  207362.4
    DAC S:0x00
    339 : 10828 :  207363.3
    DAC S:0x00
    340 : 10832 :  207364.2
    DAC S:0x00
    341 : 10836 :  207365.1
    DAC S:0x00
    342 : 10840 :  207366.0
    DAC S:0x00
    343 : 10844 :  207367.0
    DAC S:0x00
    344 : 10848 :  207367.9
    DAC S:0x00
    345 : 10852 :  207368.8
    DAC S:0x00
    346 : 10856 :  207369.7
    DAC S:0x00
    347 : 10860 :  207370.6
    DAC S:0x00
    348 : 10864 :  207371.5
    DAC S:0x00
    349 : 10868 :  207372.4
    DAC S:0x00
    350 : 10872 :  207373.3
    DAC S:0x00
    351 : 10876 :  207374.2
    DAC S:0x00
    352 : 10880 :  207375.1
    DAC S:0x00
    353 : 10884 :  207376.1
    DAC S:0x00
    354 : 10888 :  207377.0
    DAC S:0x00
    355 : 10892 :  207377.9
    DAC S:0x00
    356 : 10896 :  207378.8
    DAC S:0x00
    357 : 10900 :  207379.7
    DAC S:0x00
    358 : 10904 :  207380.6
    DAC S:0x00
    359 : 10908 :  207381.5
    DAC S:0x00
    360 : 10912 :  207382.4
    DAC S:0x00
    361 : 10916 :  207383.3
    DAC S:0x00
    362 : 10920 :  207384.3
    DAC S:0x00
    363 : 10924 :  207385.2
    DAC S:0x00
    364 : 10928 :  207386.1
    DAC S:0x00
    365 : 10932 :  207387.0
    DAC S:0x00
    366 : 10936 :  207387.9
    DAC S:0x00
    367 : 10940 :  207388.8
    DAC S:0x00
    368 : 10944 :  207389.7
    DAC S:0x00
    369 : 10948 :  207390.6
    DAC S:0x00
    370 : 10952 :  207391.5
    DAC S:0x00
    371 : 10956 :  207392.5
    DAC S:0x00
    372 : 10960 :  207393.4
    DAC S:0x00
    373 : 10964 :  207394.3
    DAC S:0x00
    374 : 10968 :  207395.2
    DAC S:0x00
    375 : 10972 :  207396.1
    DAC S:0x00
    376 : 10976 :  207397.0
    DAC S:0x00
    377 : 10980 :  207397.9
    DAC S:0x00
    378 : 10984 :  207398.8
    DAC S:0x00
    379 : 10988 :  207399.7
    DAC S:0x00
    380 : 10992 :  207400.6
    DAC S:0x00
    381 : 10996 :  207401.5
    DAC S:0x00
    382 : 11000 :  207402.5
    DAC S:0x00
    383 : 11004 :  207403.4
    DAC S:0x00
    384 : 11008 :  207404.3
    DAC S:0x00
    385 : 11012 :  207405.2
    DAC S:0x00
    386 : 11016 :  207406.1
    DAC S:0x00
    387 : 11020 :  207407.0
    DAC S:0x00
    388 : 11024 :  207407.9
    DAC S:0x00
    389 : 11028 :  207408.8
    DAC S:0x00
    390 : 11032 :  207409.8
    DAC S:0x00
    391 : 11036 :  207410.7
    DAC S:0x00
    392 : 11040 :  207411.6
    DAC S:0x00
    393 : 11044 :  207412.5
    DAC S:0x00
    394 : 11048 :  207413.4
    DAC S:0x00
    395 : 11052 :  207414.3
    DAC S:0x00
    396 : 11056 :  207415.2
    DAC S:0x00
    397 : 11060 :  207416.1
    DAC S:0x00
    398 : 11064 :  207417.0
    DAC S:0x00
    399 : 11068 :  207417.9
    DAC S:0x00
    400 : 11072 :  207418.9
    DAC S:0x00
    401 : 11076 :  207419.8
    DAC S:0x00
    402 : 11080 :  207420.7
    DAC S:0x00
    403 : 11084 :  207421.6
    DAC S:0x00
    404 : 11088 :  207422.5
    DAC S:0x00
    405 : 11092 :  207423.4
    DAC S:0x00
    406 : 11096 :  207424.3
    DAC S:0x00
    407 : 11100 :  207425.2
    DAC S:0x00
    408 : 11104 :  207426.1
    DAC S:0x00
    409 : 11108 :  207427.0
    DAC S:0x00
    410 : 11112 :  207428.0
    DAC S:0x00
    411 : 11116 :  207428.9
    DAC S:0x00
    412 : 11120 :  207429.8
    DAC S:0x00
    413 : 11124 :  207430.7
    DAC S:0x00
    414 : 11128 :  207431.6
    DAC S:0x00
    415 : 11132 :  207432.5
    DAC S:0x00
    416 : 11136 :  207433.4
    DAC S:0x00
    417 : 11140 :  207434.3
    DAC S:0x00
    418 : 11144 :  207435.2
    DAC S:0x08
    419 : 11148 :  207436.2
    DAC S:0x08
    420 : 11152 :  207437.1
    DAC S:0x08
    421 : 11156 :  207438.0
    DAC S:0x08
    422 : 11160 :  207438.9
    DAC S:0x08
    423 : 11164 :  207439.8
    DAC S:0x08
    424 : 11168 :  207440.7
    DAC S:0x08
    425 : 11172 :  207441.6
    DAC S:0x08
    426 : 11176 :  207442.5
    DAC S:0x08
    427 : 11180 :  207443.4
    DAC S:0x08
    428 : 11184 :  207444.3
    DAC S:0x08
    429 : 11188 :  207445.3
    DAC S:0x08
    430 : 11192 :  207446.2
    DAC S:0x08
    431 : 11196 :  207447.1
    DAC S:0x08
    432 : 11200 :  207448.0
    DAC S:0x08
    

  • Aleksandr,

    First - thank you for your patience in this. We've been doing some experiments on the bench and in the digital design database to try to track this problem down but to this point we have not been able to replicate what you have described. The information you have provided may be a useful clue.

    ALEKSANDR BENIS said:

    As you can see in line 2011 the Alarm was triggered after: 421 : 11156 : 207438.0 (value 207438.0 was written in to the EE address 11156).

    I did many tests and the actual value of the Total2 does not correlate with the problem but address does because it happens after every 800 – 1000 seconds.

    Maybe I am misinterpreting the table or opened it in an incorrect format, but, it seems like the alarm is actually triggered by the write to address 11144? (this is a few writes before the write to address 11156)

    ALEKSANDR BENIS said:
    Since DAC8760 shift register gets all data on the SPI1 (default frame is 24 bits wide) regardless the ~Latch level is it possible that device receive some wrong bit combination (some bits were clocked in from different device which has different frame size) which activate Alarm?

    The digital interfaces latch action is triggered by a rising edge on the LATCH pin. When the latch is triggered the data contained by the previous 24 clocks on MOSI is read by the device. If a rising edge on the DAC8760 LATCH pin does not occur, it should not read any of the data that was placed on the bus. Are the devices sharing CS/LATCH signals?

  • Kevin,

    Yes, you are right in this data log file the alarm is actually triggered by the write to address 11144. I was looking on different log file at the moment I was writing (I have more than 20 log files related to this issue).  Looking on all these log files I can conclude that the Alarm may be triggered after writing to the any memory index. Sometimes it can happen after 4 hours from the power up so 7 – 17 minutes I have stated previously is no longer valid.

    Each device on SPI1 interface (ADC, DAC and EEPROM) has individual CS/LATCH signal. I setup my oscilloscope to trigger on falling edge of the Alarm pin and monitor following signals:

    SPI1_SCK

    SPI1_MOSI

    CS_DAC (Latch)

    So far when Alarm is triggered I do not see activity on SPI1 bus within 200us before and 100us after from the moment Alarm event has been triggered. I have to move my DUT fixture to the MSO with dipper memory records to evaluate longer rime interval.

    One thing is clear: Alarms triggers only if I write to EEPROM. So activity on SPI1 bus triggers somehow Alarm.

  • Aleksandr,

    Thanks for your efforts and sharing this information. We will continue our efforts on this end. Please let us know if you find correlation between a specific word or set of words and creating this event in your setup.

  • Kevin,

    Please see attachments. I have tested different scenarios and so far when Alarm is triggered I do not see DAC LATCH signal activity on SPI1 bus within 36 ms before and 4 ms after from the moment Alarm event has been triggered. It may trigger in any time of the SPI1 activity not related to DAC or it triggers when there is no activity on SPI1 bus at all. I have checked actual data on SPI1 bus and they are valid and intact with my firmware code.  

    ALARM_4ms_horizontal_scale_The_LastActivity_PriortoALARM_Zoom_1000X.pdf

    ALARM_4ms_horizontal_scale_The_TriggerEvent_Zoom_1000X.pdf

  • Kevin,

     

    Below are my conclusions made after the several weeks of testing different scenarios. I made separate firmware which includes only code related to writing/reading EEPROM and DAC8760.

    1. Alarm reliably triggered when writing any 32 bit IEEE-754 floating-point number in to the EEPROM address range between 11136 (0x2B80) and 11280 (0x2C10).
    2. With writing every 1 second in to the 4098 byte rolling buffer it takes between 10 minutes and 1.5 hour to trigger Alarm if writing in to the addresses listed above.
    3. Writing in to the lower or higher EEPROM address does not trigger Alarm Output.

    It seems like it triggers after particular combination of command-address frames shifted in to the DAC8760 shifter register. I know it not supposed to be latched (accepted) until rising edge on the DAC8760 LATCH pin but it somehow does affect DAC8760 Alarm Output. Attached file illustrates EEPROM write sequence.

    For now in order to move on we forced to change Totalizer#2 rolling storage area in the EEPROM from address 9472 (0x2500) to address 12032 (0x2F00) which is effectively cured DAC8760 Alarm output problem. The only inconvenience is that chunk (about 1800 byte) of the EEPROM area is lost and we forced switch to 25LC256 32KB part.  

    Hope this info will help to recreate this issue on your end.

    EEPROM_BYTE_WRITE_1.pdf

  • Aleksandr,

    Thank you for your patience. Unfortunately I was very sick for most of last week and was not able to come into the office and work on this, alongside my work PC's hard-drive failed and has been replaced. I've been working remotely through some of my peers and I think we're closing in on the explaination for what's going on here, thanks in no small part to all of the tests that you have run. I expect to have something for you by the end of the week once I have recovered my PC and can run a few tests myself.

  • Aleksandr,

    We have identified the root cause for this behavior, and I would like to take this discussion to email for the complete explanation. I think we're going to want to have more direct communication over this issue with a few other folks from my team included, so email is just a better method for communication.

    If that is okay with you, I will send you a private message on the E2E Community to exchange email addresses and we will take the conversation from there.
  • Kevin,

    It is okay with me. I will wait for your private message. 

  • Hello Aleksandr and Kevin,

    probably we have a similar problem, which we have described here "DAC8760 – device reacts to SPI data without latch signal, especially to 0x57"
    e2e.ti.com/.../474672

    What are the results and solution for your problem?

    Many thanks in advance.
  • Hi Sebastian,

    I only had problem with Alarm and my solution to the problem suggested by TI team was following:

    1. Enable WD during application start up:
    SPI_DAC8760_Write(0x57, 0x0087); // Write to Configuration register DAC dual output disabled, w/o calibration support, with WD enabled to 204ms
    2. Make sure WD Reset Register (0x95) written every 100ms with 0x0001:
    SPI_DAC8760_Write(0x95, 0x0001); // Write to DAC Watchdog Reset Register (0x95) => Reset Watchdog (takes about 28 us)

    Below is conformation I received from Kevin regarding this problem:
    [Start Quote]
    The problem is that it is possible for the device to take action on its input shift register contents without seeing a rising edge on LATCH if a particular pattern is present on DIN and SCLK, which is not documented in the datasheet. Basically this behavior is analogous to a CS signal not truly holding arbitration over a part on the bus. That particular pattern causes the device to enable the watchdog timer, but it is enabled in such a way that it is not visible by reads to the configuration register and is not capable of being enabled/disabled through writes to the configuration register and the alarm cannot be cleared except through a power-on reset event – this is 1:1 with the symptoms you shared on the E2E. We have replicated this both in simulation and on the bench.

    There are a few solutions to the issue:

    • Purposely enable & implement compliance with the Watchdog timer in your firmware. With the maximum watchdog timer time-out at 204ms it may be trivial for your MCU to implement compliance with the alarm. We are still working on simulating and verifying that the previously mentioned bug does not hold any impact on this work-around.
    • Place the DAC8760 on a bus without any other devices on the bus. In this case only intentional writes will be latched by the part and it will not enter this erroneous watchdog timer state.
    • Place a gate between the DAC8760 DIN pin or SCLK pin and the host MCU so the DAC8760 does not see the communication with the EEPROM that places the bad pattern on the bus.

    This is not intended functionality of the part, therefore we will be revising the device datasheet. Datasheet changes aren’t very fast, though, so in the meanwhile we will post this information publicly on the TI E2E Community. At this time, we are working on the exact text that we will put in the datasheet revision. Once that is done, we will post exactly that text to the forum and later reproduce the same text in the datasheet.
    [End Quote]

    If you still did not find this info in the data sheet than I can say TI is really not "very fast" because I reported this issue in April 2015.

    Hope this will help.

    Regards.