ESP32 In MicroPython: Using Hardware Registers
Written by Harry Fairhead & Mike James   
Monday, 19 June 2023
Article Index
ESP32 In MicroPython: Using Hardware Registers
Blinky
Sine Wave Generator

Example II – Sine Wave Generator

MicroPython doesn’t provide access to the sine wave generator included in the DAC. It is, however, fairly easy to configure and enable it by directly working with its registers. There is only one sine wave generator for both DACs, but each one can set its own scale, offset and phase.

If you look at the manual you will find the analog register summary and listed are two registers for the DAC system:

DAC control registers

Name

Description

Address

Access

SENS_SAR_DAC_CTRL1_REG

DAC control

0x3FF48898

R/W

SENS_SAR_DAC_CTRL2_REG

DAC output control

0x3FF4889C

R/W


Looking further at the details of the registers reveals:

table1

You can see that the first register has a single bit that enables the sine wave generator – bit 16, SENS_SW_TONE_EN and a 16-bit field, SENS_SW_FSTEP, that sets the frequency. Looking back at the description of the sine wave generator, we find the expression:

freq = dig_clk_rtc_freq · SENS_SAR_SW_FSTEP/65536 

and that the clock is 8MHz. This gives:

step = int(f*65536/8000000) & 0xFFFF

Looking at the details of the second register:

table2

You can see that there are two bits, SENS_DAC_CW_EN1 and SENS_DAC_CW_EN2, which select the input source for each DAC, 1 or 2 respectively. Setting either bit to 1 connects the DAC to the sine wave generator and setting it to 0 connects the DAC to the usual register that sets the output level.

The two 2-bit fields SENS_DAC_INV1 and SENS_DAC_INV2 are a mystery and don’t seem to do what they were intended to. Setting the field to 00 or 10 produces a very strange waveform. Setting the field to 01 or 11 produces a pair of sine waves that differ by 180 degrees. The two settings 00 and 10 were intended to produce 90° and 270° phase shifts, but these don’t seem to work.

The two 2-bit fields SENS_DAC_SCALE1 and SENS_DAC_SCALE2 scale the output by 00 = no scaling, 01 = 1/2, 10 = 1/4 and 11 = 1/8.

Finally the two 8-bit fields SENS_DAC_DC1 and SENS_DAC_DC2 set the offset.

We need a set of functions that set the appropriate bits in the control registers. The easiest three to set are phase, scale and offset. To set phase to p, a two-bit value, we need to change bits 20 and 21 for DAC 1 and 22 and 23 for DAC 2. This can be done using a single function:

def setPhase(chan,p):
    _reg_set(0x3FF4889c, p << (20 + 2 * (chan – 1)),
                        0x03 << (20 + 2 * (chan - 1)))

The mask is computed using the chan parameter which is 1 or 2. If it is 1 then the mask works out to:

0x03 << 20 

which sets the mask to only allow modification of bits 20 and 21. If chan is 2 then mask works out to:

0x03 << 22

which allows modification of bits 22 and 23. The value is worked out in the same way so as to store the two-bit value in the same bits as the mask.

Once you have seen how to set a bit field with a specified size and location it is easy to generalize and setScale and setOff are:

def setScale(chan,s):
    _reg_set(0x3FF4889c, s << (16 + 2 * (chan - 1)), 
                        0x03 << (16 + 2 * (chan - 1)))
def setOff(chan,off):
    _reg_set(0x3FF4889c, off << (8 * (chan - 1)), 
0xFF << (8 * (chan - 1)))

A setFreq function is only slightly more difficult in that we have to calculate the step value from the specified frequency:

def setFreq(chan,f):
    if chan<1 or chan>2:
        return
    step = int(f*65536/8000000) & 0xFFFF
    _reg_set(0x3FF48898, step, 0x000FF)

Finally we need to enable the sine generator. It is assumed that the DAC is already set up correctly using MicroPython and all we have to do is set the additional bits to turn the sine wave generator on and connect it to the appropriate DAC,

 

A function to do this is now relatively easy:

def enableSin(chan,f):
    if chan<1 or chan>2:
        return
    setFreq(chan, f)
    setPhase(chan,0x2) 
    #enable tone
    _reg_set(0x3FF48898, 0x10000, 0x10000)
    #select channel
    if chan==1:
        _reg_set(0x3FF4889c, 1<<24,0x1<<24)
    else:
        _reg_set(0x3FF4889c, 1<<25, 0x1 <<25)  

Putting all this together gives us a complete set of functions to control the sine wave generator:

from machine import Pin, DAC, mem32
from time import sleep
def _reg_get(adr):
    return mem32[adr]
def _reg_set( adr,value, mask):
    mem32[adr] = mem32[adr] & ~mask | value & mask
def enableSin(chan,f):
    if chan<1 or chan>2:
        return
    setFreq(chan, f)
    setPhase(chan,0x2)
    #enable tone
    _reg_set(0x3FF48898, 0x10000, 0x10000)
    #select channel
    if chan==1:
        _reg_set(0x3FF4889c, 1<<24,0x1<<24)
    else:
        _reg_set(0x3FF4889c, 1<<25, 0x1 <<25)
def setFreq(chan,f):
    if chan<1 or chan>2:
        return
    step = int(f*65536/8000000) & 0xFFFF
    _reg_set(0x3FF48898, step, 0x000FF)
def setPhase(chan,p):
    _reg_set(0x3FF4889c, p << (20 + 2 * (chan – 1)),
0x03 << (20 + 2 * (chan - 1))) def setScale(chan,s): _reg_set(0x3FF4889c, s << (16 + 2 * (chan - 1)),
0x03 << (16 + 2 * (chan - 1))) def setOff(chan,off): _reg_set(0x3FF4889c, off << (8 * (chan - 1)),
0xFF << (8 * (chan - 1)))

The scale factor s is restricted to two bits and the scaling is given by 2s. The offset is seven bits and if the scale factor isn’t used clipping will occur. Phase is two bits and only 2 and 3 can be used, corresponding to phase shifts of 0 degrees and 180 degrees. Notice that the phase shift also shifts the offset, which is generally undesirable.

Once we have these functions we can make use of the sine wave generator:

dac1 = DAC(Pin(26))
enableSin(2,30000)
setScale(2,0x0)
setOff(2,0x0)
while(True):
    sleep(0.001)
    setPhase(2,0x3)
    sleep(.001)
    setPhase(2, 0x2)

The standard MicroPython DAC object is used to enable the DAC hardware. After this we can use the functions to modify the control registers. The example sets a frequency of 30KHz and then modulates its phase between 0 and 180 degrees.

In chapter but not in this extract

  • RTC
  • Sleep
  • Wake Using ULP
  • Wake Using EXT0 and EXT1
  • Wake Using TouchPads
  • Watchdog
  • Flash Memory
  • The File System
  • Non-Volatile Storage
  • Installing File Systems
  • External SD
  • Digging Deeper

esppython180

Summary

  • All of the ESP32’s peripherals, including the GPIO lines, are controlled by registers – special memory locations that you write and read to configure and use the hardware.

  • Exactly where the registers are positioned in the address space is given in the documentation as a base address used for all of the similar registers and an offset that has to be added to the base to get the address of a particular register.

  • With knowledge of how things work, you can add functions that are missing from MicroPython, changing GPIO lines at the same time.

  • You can also use features of peripherals that MicroPython doesn’t support like the sine wave generator connected to the DACs.

  • There is a Real Time Clock, RTC, that you can set using the ntptime object.

  • If you want to use the ESP32 with a battery source then you need to work with power saving modes.

  • Low-power modes are implemented as part of the RTC. Some GPIO lines have low-power counterparts RTC GPIO.

  • Light sleep is easy to work with because it saves the current state of the system and you can restart your program from where it entered light sleep.

  • Deep sleep saves more power, but the CPU is switched off and the system loses track of its state. The entire MicroPython system is restarted when it wakes up and your program has to restore its state.

  • The system can be woken up either by a set time, a change in RTC GPIO lines or a Touch input.

  • The watchdog timer can be used to make your program reliable.

  • You can work with the ESP32’s internal flash memory as partitions and you can install file systems onto partitions and then work with files.

  • The NVS object allows you to save key value pairs to the internal flash memory.

  • If you add an external SD card reader you can work with an SD card using the same techniques as used for the internal flash memory.

Programming the ESP32in MicroPython

By Harry Fairhead & Mike James

esppython360

Buy from Amazon.

Contents

       Preface

  1. The ESP32 – Before We Begin
  2. Getting Started
  3. Getting Started With The GPIO 
  4. Simple Output
  5. Some Electronics
  6. Simple Input
  7. Advanced Input – Interrupts
  8. Pulse Width Modulation
       Extract:
    PWM And The Duty Cycle
  9. Controlling Motors And Servos
  10. Getting Started With The SPI Bus
  11. Using Analog Sensors
       Extract:
    Analog Input
  12. Using The I2C Bus
       Extract
    : I2C, HTU21D And Slow Reading 
  13. One-Wire Protocols
  14. The Serial Port
  15. Using WiFi
     Extract:
    WiFi 
  16. Sockets
     Extract:
    Client Sockets
     Extract:
    SSL Client Sockets***NEW!
  17. Asyncio And Servers
  18. Direct To The Hardware
     Extract:
    Using Hardware Registers 

<ASIN:187196282X>

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner



Last Updated ( Tuesday, 20 June 2023 )