2020-11-28 09:39:35 +01:00
# include "ESP32-HUB75-MatrixPanel-I2S-DMA.h"
2018-10-23 02:00:47 +02:00
// Credits: Louis Beaudoin <https://github.com/pixelmatix/SmartMatrix/tree/teensylc>
// and Sprite_TM: https://www.esp32.com/viewtopic.php?f=17&t=3188 and https://www.esp32.com/viewtopic.php?f=13&t=3256
2020-07-29 09:47:54 +02:00
/*
This is example code to driver a p3 ( 2121 ) 64 * 32 - style RGB LED display . These types of displays do not have memory and need to be refreshed
continuously . The display has 2 RGB inputs , 4 inputs to select the active line , a pixel clock input , a latch enable input and an output - enable
input . The display can be seen as 2 64 x16 displays consisting of the upper half and the lower half of the display . Each half has a separate
RGB pixel input , the rest of the inputs are shared .
Each display half can only show one line of RGB pixels at a time : to do this , the RGB data for the line is input by setting the RGB input pins
to the desired value for the first pixel , giving the display a clock pulse , setting the RGB input pins to the desired value for the second pixel ,
giving a clock pulse , etc . Do this 64 times to clock in an entire row . The pixels will not be displayed yet : until the latch input is made high ,
the display will still send out the previously clocked in line . Pulsing the latch input high will replace the displayed data with the data just
clocked in .
The 4 line select inputs select where the currently active line is displayed : when provided with a binary number ( 0 - 15 ) , the latched pixel data
will immediately appear on this line . Note : While clocking in data for a line , the * previous * line is still displayed , and these lines should
be set to the value to reflect the position the * previous * line is supposed to be on .
Finally , the screen has an OE input , which is used to disable the LEDs when latching new data and changing the state of the line select inputs :
2020-07-30 00:11:03 +02:00
doing so hides any artefacts that appear at this time . The OE line is also used to dim the display by only turning it on for a limited time every
2020-07-29 09:47:54 +02:00
line .
All in all , an image can be displayed by ' scanning ' the display , say , 100 times per second . The slowness of the human eye hides the fact that
only one line is showed at a time , and the display looks like every pixel is driven at the same time .
Now , the RGB inputs for these types of displays are digital , meaning each red , green and blue subpixel can only be on or off . This leads to a
color palette of 8 pixels , not enough to display nice pictures . To get around this , we use binary code modulation .
Binary code modulation is somewhat like PWM , but easier to implement in our case . First , we define the time we would refresh the display without
binary code modulation as the ' frame time ' . For , say , a four - bit binary code modulation , the frame time is divided into 15 ticks of equal length .
We also define 4 subframes ( 0 to 3 ) , defining which LEDs are on and which LEDs are off during that subframe . ( Subframes are the same as a
normal frame in non - binary - coded - modulation mode , but are showed faster . ) From our ( non - monochrome ) input image , we take the ( 8 - bit : bit 7
to bit 0 ) RGB pixel values . If the pixel values have bit 7 set , we turn the corresponding LED on in subframe 3. If they have bit 6 set ,
we turn on the corresponding LED in subframe 2 , if bit 5 is set subframe 1 , if bit 4 is set in subframe 0.
Now , in order to ( on average within a frame ) turn a LED on for the time specified in the pixel value in the input data , we need to weigh the
subframes . We have 15 pixels : if we show subframe 3 for 8 of them , subframe 2 for 4 of them , subframe 1 for 2 of them and subframe 1 for 1 of
them , this ' automatically ' happens . ( We also distribute the subframes evenly over the ticks , which reduces flicker . )
In this code , we use the I2S peripheral in parallel mode to achieve this . Essentially , first we allocate memory for all subframes . This memory
contains a sequence of all the signals ( 2 xRGB , line select , latch enable , output enable ) that need to be sent to the display for that subframe .
Then we ask the I2S - parallel driver to set up a DMA chain so the subframes are sent out in a sequence that satisfies the requirement that
subframe x has to be sent out for ( 2 ^ x ) ticks . Finally , we fill the subframes with image data .
2020-07-30 00:11:03 +02:00
We use a front buffer / back buffer technique here to make sure the display is refreshed in one go and drawing artifacts do not reach the display .
2020-07-29 09:47:54 +02:00
In practice , for small displays this is not really necessarily .
*/
2020-08-11 21:44:47 +02:00
// For development testing only
//#define IGNORE_REFRESH_RATE 1
uint8_t val2PWM ( int val ) {
if ( val < 0 ) val = 0 ;
if ( val > 255 ) val = 255 ;
return lumConvTab [ val ] ;
}
2020-11-28 10:45:30 +01:00
bool MatrixPanel_I2S_DMA : : allocateDMAmemory ( )
2018-10-23 02:00:47 +02:00
{
2020-07-29 09:47:54 +02:00
/***
* Step 1 : Look at the overall DMA capable memory for the DMA FRAMEBUFFER data only ( not the DMA linked list descriptors yet )
* and do some pre - checks .
*/
int _num_frame_buffers = ( double_buffering_enabled ) ? 2 : 1 ;
size_t _frame_buffer_memory_required = sizeof ( frameStruct ) * _num_frame_buffers ;
size_t _dma_linked_list_memory_required = 0 ;
size_t _total_dma_capable_memory_reserved = 0 ;
2020-08-13 00:40:44 +02:00
// 1. Calculate the amount of DMA capable memory that's actually available
2020-07-29 09:47:54 +02:00
# if SERIAL_DEBUG
Serial . printf ( " Panel Height: %d pixels. \r \n " , MATRIX_HEIGHT ) ;
Serial . printf ( " Panel Width: %d pixels. \r \n " , MATRIX_WIDTH ) ;
if ( double_buffering_enabled ) {
Serial . println ( " DOUBLE FRAME BUFFERS / DOUBLE BUFFERING IS ENABLED. DOUBLE THE RAM REQUIRED! " ) ;
}
2020-07-29 11:44:38 +02:00
2020-07-29 09:47:54 +02:00
Serial . println ( " DMA memory blocks available before any malloc's: " ) ;
heap_caps_print_heap_info ( MALLOC_CAP_DMA ) ;
2020-07-29 11:44:38 +02:00
2020-07-29 09:47:54 +02:00
Serial . printf ( " We're going to need %d bytes of SRAM just for the frame buffer(s). \r \n " , _frame_buffer_memory_required ) ;
2020-08-13 00:40:44 +02:00
Serial . printf ( " The total amount of DMA capable SRAM memory is %d bytes. \r \n " , heap_caps_get_free_size ( MALLOC_CAP_DMA ) ) ;
2020-07-29 09:47:54 +02:00
Serial . printf ( " Largest DMA capable SRAM memory block is %d bytes. \r \n " , heap_caps_get_largest_free_block ( MALLOC_CAP_DMA ) ) ;
2020-08-13 00:40:44 +02:00
2020-07-29 09:47:54 +02:00
# endif
2020-08-13 00:40:44 +02:00
// Can we potentially fit the framebuffer into the DMA capable memory that's available?
if ( heap_caps_get_free_size ( MALLOC_CAP_DMA ) < _frame_buffer_memory_required ) {
2020-07-29 09:47:54 +02:00
2020-07-29 11:44:38 +02:00
# if SERIAL_DEBUG
2020-08-13 00:40:44 +02:00
Serial . printf ( " ######### Insufficient memory for requested resolution. Reduce MATRIX_COLOR_DEPTH and try again. \r \n \t Additional %d bytes of memory required. \r \n \r \n " , ( _frame_buffer_memory_required - heap_caps_get_free_size ( MALLOC_CAP_DMA ) ) ) ;
2020-07-29 11:44:38 +02:00
# endif
return false ;
}
2020-08-13 00:40:44 +02:00
// Alright, theoretically we should be OK, so let us do this, so
// lets allocate a chunk of memory for each row (a row could span multiple panels if chaining is in place)
for ( int malloc_num = 0 ; malloc_num < ROWS_PER_FRAME ; malloc_num + + )
{
matrix_row_framebuffer_malloc [ malloc_num ] = ( rowColorDepthStruct * ) heap_caps_malloc ( ( sizeof ( rowColorDepthStruct ) * _num_frame_buffers ) , MALLOC_CAP_DMA ) ;
// If the ESP crashes here, then we must have a horribly fragmented memory space, or trying to allocate a ludicrous resolution.
# if SERIAL_DEBUG
2020-12-07 10:25:29 +01:00
Serial . printf ( " Malloc'ing %d bytes of memory @ address %ud for frame row %d. \r \n " , ( sizeof ( rowColorDepthStruct ) * _num_frame_buffers ) , ( unsigned int ) matrix_row_framebuffer_malloc [ malloc_num ] , malloc_num ) ;
2020-08-13 00:40:44 +02:00
# endif
if ( matrix_row_framebuffer_malloc [ malloc_num ] = = NULL ) {
Serial . printf ( " ERROR: Couldn't malloc matrix_row_framebuffer %d! Critical fail. \r \n " , malloc_num ) ;
return false ;
}
}
2020-07-29 11:44:38 +02:00
_total_dma_capable_memory_reserved + = _frame_buffer_memory_required ;
2020-07-29 09:47:54 +02:00
/***
* Step 2 : Calculate the amount of memory required for the DMA engine ' s linked list descriptors .
* Credit to SmartMatrix for this stuff .
*/
2020-08-11 21:44:47 +02:00
2020-07-29 09:47:54 +02:00
2020-08-13 00:40:44 +02:00
// Calculate what colour depth is actually possible based on memory available vs. required dma linked-list descriptors.
2020-07-29 09:47:54 +02:00
// aka. Calculate the lowest LSBMSB_TRANSITION_BIT value that will fit in memory
int numDMAdescriptorsPerRow = 0 ;
2018-10-23 02:00:47 +02:00
lsbMsbTransitionBit = 0 ;
2020-08-11 21:44:47 +02:00
2020-08-13 13:16:17 +02:00
2018-10-23 02:00:47 +02:00
while ( 1 ) {
2020-07-29 09:47:54 +02:00
numDMAdescriptorsPerRow = 1 ;
for ( int i = lsbMsbTransitionBit + 1 ; i < PIXEL_COLOR_DEPTH_BITS ; i + + ) {
2020-08-11 21:44:47 +02:00
numDMAdescriptorsPerRow + = ( 1 < < ( i - lsbMsbTransitionBit - 1 ) ) ;
2018-10-23 02:00:47 +02:00
}
2020-07-29 09:47:54 +02:00
int ramrequired = numDMAdescriptorsPerRow * ROWS_PER_FRAME * _num_frame_buffers * sizeof ( lldesc_t ) ;
2018-10-23 02:00:47 +02:00
int largestblockfree = heap_caps_get_largest_free_block ( MALLOC_CAP_DMA ) ;
2020-07-29 09:47:54 +02:00
# if SERIAL_DEBUG
2020-08-02 23:03:16 +02:00
Serial . printf ( " lsbMsbTransitionBit of %d with %d DMA descriptors per frame row, requires %d bytes RAM, %d available, leaving %d free: \r \n " , lsbMsbTransitionBit , numDMAdescriptorsPerRow , ramrequired , largestblockfree , largestblockfree - ramrequired ) ;
2020-07-29 09:47:54 +02:00
# endif
2018-10-23 02:00:47 +02:00
2020-07-29 09:47:54 +02:00
if ( ramrequired < largestblockfree )
2018-10-23 02:00:47 +02:00
break ;
2020-07-29 09:47:54 +02:00
if ( lsbMsbTransitionBit < PIXEL_COLOR_DEPTH_BITS - 1 )
2018-10-23 02:00:47 +02:00
lsbMsbTransitionBit + + ;
else
break ;
}
2020-07-29 09:47:54 +02:00
Serial . printf ( " Raised lsbMsbTransitionBit to %d/%d to fit in remaining RAM \r \n " , lsbMsbTransitionBit , PIXEL_COLOR_DEPTH_BITS - 1 ) ;
2018-10-23 02:00:47 +02:00
2020-08-13 13:16:17 +02:00
# ifndef IGNORE_REFRESH_RATE
2018-10-23 02:00:47 +02:00
// calculate the lowest LSBMSB_TRANSITION_BIT value that will fit in memory that will meet or exceed the configured refresh rate
2020-08-11 21:44:47 +02:00
while ( 1 ) {
2018-10-23 02:00:47 +02:00
int psPerClock = 1000000000000UL / ESP32_I2S_CLOCK_SPEED ;
2020-07-29 09:47:54 +02:00
int nsPerLatch = ( ( PIXELS_PER_ROW + CLKS_DURING_LATCH ) * psPerClock ) / 1000 ;
2018-10-23 02:00:47 +02:00
// add time to shift out LSBs + LSB-MSB transition bit - this ignores fractions...
2020-07-29 09:47:54 +02:00
int nsPerRow = PIXEL_COLOR_DEPTH_BITS * nsPerLatch ;
2018-10-23 02:00:47 +02:00
// add time to shift out MSBs
2020-07-29 09:47:54 +02:00
for ( int i = lsbMsbTransitionBit + 1 ; i < PIXEL_COLOR_DEPTH_BITS ; i + + )
nsPerRow + = ( 1 < < ( i - lsbMsbTransitionBit - 1 ) ) * ( PIXEL_COLOR_DEPTH_BITS - i ) * nsPerLatch ;
2018-10-23 02:00:47 +02:00
int nsPerFrame = nsPerRow * ROWS_PER_FRAME ;
int actualRefreshRate = 1000000000UL / ( nsPerFrame ) ;
2020-07-29 09:47:54 +02:00
calculated_refresh_rate = actualRefreshRate ;
2018-10-23 02:00:47 +02:00
2020-07-30 10:01:54 +02:00
# if SERIAL_DEBUG
2020-08-02 23:03:16 +02:00
Serial . printf ( " lsbMsbTransitionBit of %d gives %d Hz refresh: \r \n " , lsbMsbTransitionBit , actualRefreshRate ) ;
# endif
2018-10-23 02:00:47 +02:00
2019-07-29 14:45:06 +02:00
if ( actualRefreshRate > min_refresh_rate ) // HACK Hard Coded: 100
2018-10-23 02:00:47 +02:00
break ;
2020-07-29 09:47:54 +02:00
if ( lsbMsbTransitionBit < PIXEL_COLOR_DEPTH_BITS - 1 )
2018-10-23 02:00:47 +02:00
lsbMsbTransitionBit + + ;
else
break ;
}
2020-07-29 09:47:54 +02:00
Serial . printf ( " Raised lsbMsbTransitionBit to %d/%d to meet minimum refresh rate \r \n " , lsbMsbTransitionBit , PIXEL_COLOR_DEPTH_BITS - 1 ) ;
2020-08-13 13:16:17 +02:00
# endif
2018-10-23 02:00:47 +02:00
2020-08-02 23:03:16 +02:00
/***
* Step 2 a : lsbMsbTransition bit is now finalised - recalculate the DMA descriptor count required , which is used for
* memory allocation of the DMA linked list memory structure .
*/
2020-07-29 09:47:54 +02:00
numDMAdescriptorsPerRow = 1 ;
for ( int i = lsbMsbTransitionBit + 1 ; i < PIXEL_COLOR_DEPTH_BITS ; i + + ) {
2020-08-11 21:44:47 +02:00
numDMAdescriptorsPerRow + = ( 1 < < ( i - lsbMsbTransitionBit - 1 ) ) ;
2018-10-23 02:00:47 +02:00
}
2020-12-21 00:42:55 +01:00
# if SERIAL_DEBUG
Serial . printf ( " Recalculated number of DMA descriptors per row: %d \n " , numDMAdescriptorsPerRow ) ;
# endif
2018-10-23 02:00:47 +02:00
2020-08-02 23:03:16 +02:00
// Refer to 'DMA_LL_PAYLOAD_SPLIT' code in configureDMA() below to understand why this exists.
// numDMAdescriptorsPerRow is also used to calcaulte descount which is super important in i2s_parallel_config_t SoC DMA setup.
if ( sizeof ( rowColorDepthStruct ) > DMA_MAX ) {
# if SERIAL_DEBUG
2020-12-21 00:42:55 +01:00
Serial . printf ( " rowColorDepthStruct struct is too large, split DMA payload required. Adding %d DMA descriptors \n " , PIXEL_COLOR_DEPTH_BITS - 1 ) ;
# endif
2020-08-02 23:03:16 +02:00
numDMAdescriptorsPerRow + = PIXEL_COLOR_DEPTH_BITS - 1 ;
// Not if numDMAdescriptorsPerRow is even just one descriptor too large, DMA linked list will not correctly loop.
}
2020-07-29 09:47:54 +02:00
/***
* Step 3 : Allocate memory for DMA linked list , linking up each framebuffer row in sequence for GPIO output .
*/
_dma_linked_list_memory_required = numDMAdescriptorsPerRow * ROWS_PER_FRAME * _num_frame_buffers * sizeof ( lldesc_t ) ;
2020-07-30 10:01:54 +02:00
# if SERIAL_DEBUG
2020-08-02 23:03:16 +02:00
Serial . printf ( " Descriptors for lsbMsbTransitionBit of %d/%d with %d frame rows require %d bytes of DMA RAM with %d numDMAdescriptorsPerRow. \r \n " , lsbMsbTransitionBit , PIXEL_COLOR_DEPTH_BITS - 1 , ROWS_PER_FRAME , _dma_linked_list_memory_required , numDMAdescriptorsPerRow ) ;
2020-07-30 10:01:54 +02:00
# endif
2020-07-29 09:47:54 +02:00
_total_dma_capable_memory_reserved + = _dma_linked_list_memory_required ;
// Do a final check to see if we have enough space for the additional DMA linked list descriptors that will be required to link it all up!
if ( _dma_linked_list_memory_required > heap_caps_get_largest_free_block ( MALLOC_CAP_DMA ) ) {
2020-07-30 10:01:54 +02:00
Serial . printf ( " ERROR: Not enough SRAM left over for DMA linked-list descriptor memory reservation! Oh so close! \r \n " ) ;
2020-07-29 09:47:54 +02:00
return false ;
} // linked list descriptors memory check
2018-10-23 02:00:47 +02:00
// malloc the DMA linked list descriptors that i2s_parallel will need
2020-07-29 09:47:54 +02:00
desccount = numDMAdescriptorsPerRow * ROWS_PER_FRAME ;
//lldesc_t * dmadesc_a = (lldesc_t *)heap_caps_malloc(desccount * sizeof(lldesc_t), MALLOC_CAP_DMA);
dmadesc_a = ( lldesc_t * ) heap_caps_malloc ( desccount * sizeof ( lldesc_t ) , MALLOC_CAP_DMA ) ;
assert ( " Can't allocate descriptor framebuffer a " ) ;
2018-10-23 02:00:47 +02:00
if ( ! dmadesc_a ) {
2020-07-30 10:01:54 +02:00
Serial . printf ( " ERROR: Could not malloc descriptor framebuffer a. " ) ;
2020-07-29 09:47:54 +02:00
return false ;
2018-10-23 02:00:47 +02:00
}
2020-07-29 09:47:54 +02:00
if ( double_buffering_enabled ) // reserve space for second framebuffer linked list
{
//lldesc_t * dmadesc_b = (lldesc_t *)heap_caps_malloc(desccount * sizeof(lldesc_t), MALLOC_CAP_DMA);
dmadesc_b = ( lldesc_t * ) heap_caps_malloc ( desccount * sizeof ( lldesc_t ) , MALLOC_CAP_DMA ) ;
assert ( " Could not malloc descriptor framebuffer b. " ) ;
if ( ! dmadesc_b ) {
2020-07-30 10:01:54 +02:00
Serial . printf ( " ERROR: Could not malloc descriptor framebuffer b. " ) ;
2020-07-29 09:47:54 +02:00
return false ;
}
2018-10-23 02:00:47 +02:00
}
2020-11-28 09:39:35 +01:00
Serial . printf ( " *** ESP32-HUB75-MatrixPanel-I2S-DMA: Memory Allocations Complete *** \r \n " ) ;
2020-07-29 09:47:54 +02:00
Serial . printf ( " Total memory that was reserved: %d kB. \r \n " , _total_dma_capable_memory_reserved / 1024 ) ;
2020-08-13 00:40:44 +02:00
Serial . printf ( " ... of which was used for the DMA Linked List(s): %d kB. \r \n " , _dma_linked_list_memory_required / 1024 ) ;
2020-07-29 09:47:54 +02:00
Serial . printf ( " Heap Memory Available: %d bytes total. Largest free block: %d bytes. \r \n " , heap_caps_get_free_size ( 0 ) , heap_caps_get_largest_free_block ( 0 ) ) ;
Serial . printf ( " General RAM Available: %d bytes total. Largest free block: %d bytes. \r \n " , heap_caps_get_free_size ( MALLOC_CAP_DEFAULT ) , heap_caps_get_largest_free_block ( MALLOC_CAP_DEFAULT ) ) ;
2020-07-29 11:44:38 +02:00
# if SERIAL_DEBUG
2020-08-13 00:40:44 +02:00
Serial . println ( " DMA capable memory map available after malloc's: " ) ;
2020-07-29 11:44:38 +02:00
heap_caps_print_heap_info ( MALLOC_CAP_DMA ) ;
delay ( 1000 ) ;
# endif
2020-07-29 23:33:18 +02:00
// Just os we know
everything_OK = true ;
2020-07-29 11:44:38 +02:00
2020-07-29 09:47:54 +02:00
return true ;
2018-10-23 02:00:47 +02:00
2020-12-21 00:42:55 +01:00
} // end allocateDMAmemory()
2020-07-29 09:47:54 +02:00
2020-11-28 10:45:30 +01:00
void MatrixPanel_I2S_DMA : : configureDMA ( int r1_pin , int g1_pin , int b1_pin , int r2_pin , int g2_pin , int b2_pin , int a_pin , int b_pin , int c_pin , int d_pin , int e_pin , int lat_pin , int oe_pin , int clk_pin )
2020-07-29 09:47:54 +02:00
{
# if SERIAL_DEBUG
Serial . println ( " configureDMA(): Starting configuration of DMA engine. \r \n " ) ;
# endif
lldesc_t * previous_dmadesc_a = 0 ;
lldesc_t * previous_dmadesc_b = 0 ;
int current_dmadescriptor_offset = 0 ;
2020-08-02 23:03:16 +02:00
// HACK: If we need to split the payload in 1/2 so that it doesn't breach DMA_MAX, lets do it by the color_depth.
int num_dma_payload_color_depths = PIXEL_COLOR_DEPTH_BITS ;
if ( sizeof ( rowColorDepthStruct ) > DMA_MAX ) {
num_dma_payload_color_depths = 1 ;
}
2020-08-02 23:13:04 +02:00
// Fill DMA linked lists for both frames (as in, halves of the HUB75 panel) and if double buffering is enabled, link it up for both buffers.
2020-08-13 00:40:44 +02:00
for ( int row = 0 ; row < ROWS_PER_FRAME ; row + + ) {
2020-08-02 23:03:16 +02:00
2020-07-29 09:47:54 +02:00
// Split framebuffer malloc hack 'improvement'
2020-08-13 00:40:44 +02:00
rowColorDepthStruct * fb_malloc_ptr = matrix_row_framebuffer_malloc [ row ] ;
2018-10-23 02:00:47 +02:00
2020-08-02 23:03:16 +02:00
# if SERIAL_DEBUG
2020-12-21 00:42:55 +01:00
Serial . printf ( " Row %d DMA payload of %d bytes. DMA_MAX is %d. \r \n " , row , sizeof ( rowBitStruct ) * PIXEL_COLOR_DEPTH_BITS , DMA_MAX ) ;
2020-08-02 23:03:16 +02:00
# endif
// first set of data is LSB through MSB, single pass (IF TOTAL SIZE < DMA_MAX) - all color bits are displayed once, which takes care of everything below and inlcluding LSBMSB_TRANSITION_BIT
// NOTE: size must be less than DMA_MAX - worst case for library: 16-bpp with 256 pixels per row would exceed this, need to break into two
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_a [ current_dmadescriptor_offset ] , previous_dmadesc_a , & ( fb_malloc_ptr [ 0 ] . rowbits [ 0 ] . data ) , sizeof ( rowBitStruct ) * num_dma_payload_color_depths ) ;
2020-08-02 23:03:16 +02:00
previous_dmadesc_a = & dmadesc_a [ current_dmadescriptor_offset ] ;
2020-07-29 09:47:54 +02:00
if ( double_buffering_enabled ) {
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_b [ current_dmadescriptor_offset ] , previous_dmadesc_b , & ( fb_malloc_ptr [ 1 ] . rowbits [ 0 ] . data ) , sizeof ( rowBitStruct ) * num_dma_payload_color_depths ) ;
2020-08-02 23:03:16 +02:00
previous_dmadesc_b = & dmadesc_b [ current_dmadescriptor_offset ] ; }
2020-07-29 09:47:54 +02:00
current_dmadescriptor_offset + + ;
2020-08-02 23:13:04 +02:00
// If the number of pixels per row is to great for the size of a DMA payload, so we need to split what we were going to send above.
if ( sizeof ( rowColorDepthStruct ) > DMA_MAX )
{
# if SERIAL_DEBUG
Serial . printf ( " Spliting DMA payload for %d color depths into %d byte payloads. \r \n " , PIXEL_COLOR_DEPTH_BITS - 1 , sizeof ( rowBitStruct ) ) ;
# endif
2020-08-02 23:03:16 +02:00
2020-08-02 23:13:04 +02:00
for ( int cd = 1 ; cd < PIXEL_COLOR_DEPTH_BITS ; cd + + )
{
2020-08-02 23:03:16 +02:00
// first set of data is LSB through MSB, single pass - all color bits are displayed once, which takes care of everything below and inlcluding LSBMSB_TRANSITION_BIT
// TODO: size must be less than DMA_MAX - worst case for library: 16-bpp with 256 pixels per row would exceed this, need to break into two
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_a [ current_dmadescriptor_offset ] , previous_dmadesc_a , & ( fb_malloc_ptr [ 0 ] . rowbits [ cd ] . data ) , sizeof ( rowBitStruct ) ) ;
2020-08-02 23:03:16 +02:00
previous_dmadesc_a = & dmadesc_a [ current_dmadescriptor_offset ] ;
if ( double_buffering_enabled ) {
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_b [ current_dmadescriptor_offset ] , previous_dmadesc_b , & ( fb_malloc_ptr [ 1 ] . rowbits [ cd ] . data ) , sizeof ( rowBitStruct ) ) ;
2020-08-02 23:03:16 +02:00
previous_dmadesc_b = & dmadesc_b [ current_dmadescriptor_offset ] ; }
current_dmadescriptor_offset + + ;
2020-08-02 23:13:04 +02:00
} // additional linked list items
2020-08-02 23:03:16 +02:00
} // row depth struct
2020-08-02 23:13:04 +02:00
for ( int i = lsbMsbTransitionBit + 1 ; i < PIXEL_COLOR_DEPTH_BITS ; i + + )
{
2018-10-23 02:00:47 +02:00
// binary time division setup: we need 2 of bit (LSBMSB_TRANSITION_BIT + 1) four of (LSBMSB_TRANSITION_BIT + 2), etc
// because we sweep through to MSB each time, it divides the number of times we have to sweep in half (saving linked list RAM)
// we need 2^(i - LSBMSB_TRANSITION_BIT - 1) == 1 << (i - LSBMSB_TRANSITION_BIT - 1) passes from i to MSB
2020-07-29 09:47:54 +02:00
//Serial.printf("buffer %d: repeat %d times, size: %d, from %d - %d\r\n", current_dmadescriptor_offset, 1<<(i - lsbMsbTransitionBit - 1), (PIXEL_COLOR_DEPTH_BITS - i), i, PIXEL_COLOR_DEPTH_BITS-1);
2020-08-11 21:44:47 +02:00
# if SERIAL_DEBUG
Serial . printf ( " configureDMA(): DMA Loops for PIXEL_COLOR_DEPTH_BITS %d is: %d. \r \n " , i , ( 1 < < ( i - lsbMsbTransitionBit - 1 ) ) ) ;
# endif
for ( int k = 0 ; k < ( 1 < < ( i - lsbMsbTransitionBit - 1 ) ) ; k + + )
2020-08-02 23:13:04 +02:00
{
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_a [ current_dmadescriptor_offset ] , previous_dmadesc_a , & ( fb_malloc_ptr [ 0 ] . rowbits [ i ] . data ) , sizeof ( rowBitStruct ) * ( PIXEL_COLOR_DEPTH_BITS - i ) ) ;
2020-07-29 09:47:54 +02:00
previous_dmadesc_a = & dmadesc_a [ current_dmadescriptor_offset ] ;
if ( double_buffering_enabled ) {
2020-08-13 00:40:44 +02:00
link_dma_desc ( & dmadesc_b [ current_dmadescriptor_offset ] , previous_dmadesc_b , & ( fb_malloc_ptr [ 1 ] . rowbits [ i ] . data ) , sizeof ( rowBitStruct ) * ( PIXEL_COLOR_DEPTH_BITS - i ) ) ;
2020-07-29 09:47:54 +02:00
previous_dmadesc_b = & dmadesc_b [ current_dmadescriptor_offset ] ; }
current_dmadescriptor_offset + + ;
} // end color depth ^ 2 linked list
} // end color depth loop
2020-08-02 23:03:16 +02:00
2020-07-29 09:47:54 +02:00
} // end frame rows
# if SERIAL_DEBUG
2020-08-02 23:03:16 +02:00
Serial . printf ( " configureDMA(): Configured LL structure. %d DMA Linked List descriptors populated. \r \n " , current_dmadescriptor_offset ) ;
2020-11-03 00:16:51 +01:00
if ( desccount ! = current_dmadescriptor_offset )
{
Serial . printf ( " configureDMA(): ERROR! Expected descriptor count of %d != actual DMA descriptors of %d! \r \n " , desccount , current_dmadescriptor_offset ) ;
}
2020-07-29 09:47:54 +02:00
# endif
dmadesc_a [ desccount - 1 ] . eof = 1 ;
dmadesc_a [ desccount - 1 ] . qe . stqe_next = ( lldesc_t * ) & dmadesc_a [ 0 ] ;
//End markers for DMA LL
if ( double_buffering_enabled ) {
dmadesc_b [ desccount - 1 ] . eof = 1 ;
dmadesc_b [ desccount - 1 ] . qe . stqe_next = ( lldesc_t * ) & dmadesc_b [ 0 ] ;
} else {
dmadesc_b = dmadesc_a ; // link to same 'a' buffer
2018-10-23 02:00:47 +02:00
}
2020-07-29 09:47:54 +02:00
//Serial.printf("Performing I2S setup.\n");
Added ability to define custom pin mappings
Closes issue #4
Use something like:
' display.begin(R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN ); // setup the LED matrix'
with R1_PIN etc. referring to your own define or constant variables
2019-01-03 01:22:48 +01:00
i2s_parallel_config_t cfg = {
. gpio_bus = { r1_pin , g1_pin , b1_pin , r2_pin , g2_pin , b2_pin , lat_pin , oe_pin , a_pin , b_pin , c_pin , d_pin , e_pin , - 1 , - 1 , - 1 } ,
. gpio_clk = clk_pin ,
2018-10-23 02:00:47 +02:00
. clkspeed_hz = ESP32_I2S_CLOCK_SPEED , //ESP32_I2S_CLOCK_SPEED, // formula used is 80000000L/(cfg->clkspeed_hz + 1), must result in >=2. Acceptable values 26.67MHz, 20MHz, 16MHz, 13.34MHz...
2020-07-29 09:47:54 +02:00
. bits = ESP32_I2S_DMA_MODE , //ESP32_I2S_DMA_MODE,
2018-10-23 02:00:47 +02:00
. bufa = 0 ,
. bufb = 0 ,
desccount ,
desccount ,
dmadesc_a ,
dmadesc_b
} ;
//Setup I2S
i2s_parallel_setup_without_malloc ( & I2S1 , & cfg ) ;
2020-07-29 09:47:54 +02:00
# if SERIAL_DEBUG
Serial . println ( " configureDMA(): DMA configuration completed on I2S1. \r \n " ) ;
# endif
2020-07-29 11:44:38 +02:00
# if SERIAL_DEBUG
Serial . println ( " DMA Memory Map after DMA LL allocations: " ) ;
heap_caps_print_heap_info ( MALLOC_CAP_DMA ) ;
delay ( 1000 ) ;
# endif
2020-07-29 23:33:18 +02:00
2018-10-23 02:00:47 +02:00
} // end initMatrixDMABuff
2020-07-29 09:47:54 +02:00
2020-08-13 13:16:17 +02:00
/* There are 'bits' set in the frameStruct that we simply don't need to set every single time we change a pixel / DMA buffer co-ordinate.
* For example , the bits that determine the address lines , we don ' t need to set these every time . Once they ' re in place , and assuming we
* don ' t accidently clear them , then we don ' t need to set them again .
* So to save processing , we strip this logic out to the absolute bare minimum , which is toggling only the R , G , B pixels ( bits ) per co - ord .
*
* Critical dependency : That ' updateMatrixDMABuffer ( uint8_t red , uint8_t green , uint8_t blue ) ' has been run at least once over the
* entire frameBuffer to ensure all the non R , G , B bitmasks are in place ( i . e . like OE , Address Lines etc . )
2020-08-13 16:56:21 +02:00
*
* Note : If you change the brightness with setBrightness ( ) you MUST then clearScreen ( ) and repaint / flush the entire framebuffer .
2020-08-13 13:16:17 +02:00
*/
2020-07-29 09:47:54 +02:00
2019-01-03 00:09:32 +01:00
/* Update a specific co-ordinate in the DMA buffer */
2020-08-13 13:16:17 +02:00
/* Original version were we re-create the bitstream from scratch for each x,y co-ordinate / pixel changed. Slightly slower. */
2020-11-28 10:45:30 +01:00
void MatrixPanel_I2S_DMA : : updateMatrixDMABuffer ( int16_t x_coord , int16_t y_coord , uint8_t red , uint8_t green , uint8_t blue )
2018-10-23 02:00:47 +02:00
{
2020-07-29 11:44:38 +02:00
if ( ! everything_OK ) {
# if SERIAL_DEBUG
Serial . println ( " Cannot updateMatrixDMABuffer as setup failed! " ) ;
# endif
return ;
}
2020-08-13 00:40:44 +02:00
2020-12-07 10:25:29 +01:00
/* 1) Check that the co-ordinates are within range, or it'll break everything big time.
* Valid co - ordinates are from 0 to ( MATRIX_XXXX - 1 )
*/
if ( x_coord < 0 | | y_coord < 0 | | x_coord > = MATRIX_WIDTH | | y_coord > = MATRIX_HEIGHT ) {
return ;
}
/* LED Brightness Compensation. Because if we do a basic "red & mask" for example,
* we ' ll NEVER send the dimmest possible colour , due to binary skew .
* i . e . It ' s almost impossible for color_depth_idx of 0 to be sent out to the MATRIX unless the ' value ' of a color is exactly ' 1 '
* https : //ledshield.wordpress.com/2012/11/13/led-brightness-to-your-eye-gamma-correction-no/
*/
red = lumConvTab [ red ] ;
green = lumConvTab [ green ] ;
blue = lumConvTab [ blue ] ;
2018-10-23 02:00:47 +02:00
2020-08-13 00:40:44 +02:00
/* When using the drawPixel, we are obviously only changing the value of one x,y position,
* however , the two - scan panels paint TWO lines at the same time
* and this reflects the parallel in - DMA - memory data structure of uint16_t ' s that are getting
* pumped out at high speed .
*
* So we need to ensure we persist the bits ( 8 of them ) of the uint16_t for the row we aren ' t changing .
*
* The DMA buffer order has also been reversed ( refer to the last code in this function )
* so we have to check for this and check the correct position of the MATRIX_DATA_STORAGE_TYPE
* data .
*/
bool painting_top_frame = true ;
2020-12-07 10:25:29 +01:00
if ( y_coord > = ROWS_PER_FRAME ) // co-ords start at zero, y_coord = 15 => 16 (rows per frame)
2018-10-23 02:00:47 +02:00
{
2020-08-13 00:40:44 +02:00
y_coord - = ROWS_PER_FRAME ; // Subtract the ROWS_PER_FRAME from the pixel co-ord to get the panel ROW (not really the 'y_coord' anymore)
painting_top_frame = false ;
2018-10-23 02:00:47 +02:00
}
2020-08-13 00:40:44 +02:00
2020-12-07 10:25:29 +01:00
// Find the memory address for the malloc for this framebuffer row.
rowColorDepthStruct * fb_row_malloc_ptr = ( rowColorDepthStruct * ) matrix_row_framebuffer_malloc [ y_coord ] ;
// We need to update the correct uint16_t in the rowBitStruct array, that gets sent out in parallel
// 16 bit parallel mode - Save the calculated value to the bitplane memory in reverse order to account for I2S Tx FIFO mode1 ordering
uint16_t rowBitStruct_x_coord_uint16_t_position = ( x_coord % 2 ) ? ( x_coord - 1 ) : ( x_coord + 1 ) ;
for ( uint8_t color_depth_idx = 0 ; color_depth_idx < PIXEL_COLOR_DEPTH_BITS ; color_depth_idx + + ) // color depth - 8 iterations
2018-10-23 02:00:47 +02:00
{
2020-12-07 10:25:29 +01:00
uint8_t mask = ( 1 < < color_depth_idx ) ; // 24 bit color
2018-10-23 02:00:47 +02:00
2020-08-13 00:40:44 +02:00
// Get the contents at this address, cast as a rowColorDepthStruct
rowBitStruct * p = & fb_row_malloc_ptr [ back_buffer_id ] . rowbits [ color_depth_idx ] ; //matrixUpdateFrames location to write to uint16_t's
2020-07-29 11:44:38 +02:00
2020-12-07 10:25:29 +01:00
// We need to update the correct uint16_t in the rowBitStruct array, that gets sent out in parallel
uint16_t & v = p - > data [ rowBitStruct_x_coord_uint16_t_position ] ; // persist what we already have
if ( painting_top_frame )
{ // Need to copy what the RGB status is for the bottom pixels
2020-12-08 09:10:35 +01:00
v & = BITMASK_RGB1_CLEAR ; // reset R1G1B1 bits
2020-12-07 10:25:29 +01:00
// Set the color of the pixel of interest
if ( green & mask ) { v | = BIT_G1 ; }
if ( blue & mask ) { v | = BIT_B1 ; }
if ( red & mask ) { v | = BIT_R1 ; }
} else { // Do it the other way around
2020-12-08 09:10:35 +01:00
v & = BITMASK_RGB2_CLEAR ; // reset R2G2B2 bits
2020-12-07 10:25:29 +01:00
// Color to set
if ( red & mask ) { v | = BIT_R2 ; }
if ( green & mask ) { v | = BIT_G2 ; }
if ( blue & mask ) { v | = BIT_B2 ; }
} // paint
if ( fastmode )
continue ;
2020-07-29 09:47:54 +02:00
2020-12-07 10:25:29 +01:00
// update address/control bits
2020-12-08 09:10:35 +01:00
v & = BITMASK_CTRL_CLEAR ; // reset ABCDE,EO,LAT address bits
2020-12-07 10:25:29 +01:00
uint16_t _y = color_depth_idx ? y_coord : y_coord - 1 ;
2020-12-08 09:10:35 +01:00
v | = _y < < BITS_ADDR_OFFSET ; // shift row coord to match ABCDE bits from bit positions 8 to 12 and set bitvector
2018-10-23 02:00:47 +02:00
2019-07-29 12:00:04 +02:00
// drive latch while shifting out last bit of RGB data
2020-07-29 09:47:54 +02:00
if ( ( x_coord ) = = PIXELS_PER_ROW - 1 ) v | = BIT_LAT ;
2020-12-07 10:25:29 +01:00
// need to disable OE after latch to hide row transition
// OR one clock before latch, otherwise can get ghosting
if ( ( x_coord ) = = 0 | | ( x_coord ) = = PIXELS_PER_ROW - 2 ) { v | = BIT_OE ; continue ; }
if ( ( color_depth_idx > lsbMsbTransitionBit | | ! color_depth_idx ) & & ( ( x_coord ) > = brightness ) )
{ v | = BIT_OE ; continue ; } // For Brightness
2018-10-23 02:00:47 +02:00
// special case for the bits *after* LSB through (lsbMsbTransitionBit) - OE is output after data is shifted, so need to set OE to fractional brightness
if ( color_depth_idx & & color_depth_idx < = lsbMsbTransitionBit ) {
// divide brightness in half for each bit below lsbMsbTransitionBit
int lsbBrightness = brightness > > ( lsbMsbTransitionBit - color_depth_idx + 1 ) ;
2018-10-30 00:29:42 +01:00
if ( ( x_coord ) > = lsbBrightness ) v | = BIT_OE ; // For Brightness
2018-10-23 02:00:47 +02:00
}
2020-08-11 21:44:47 +02:00
/*
// Development / testing code only.
Serial . printf ( " r value of %d, color depth: %d, mask: %d \r \n " , red , color_depth_idx , mask ) ;
if ( red & mask ) { Serial . println ( " Success - Binary " ) ; v | = BIT_R1 ; }
Serial . printf ( " val2pwm r value: %d \r \n " , val2PWM ( red ) ) ;
if ( val2PWM ( red ) & mask ) { Serial . println ( " Success - PWM " ) ; v | = BIT_R2 ; }
*/
2018-10-23 02:00:47 +02:00
} // color depth loop (8)
2020-12-07 10:25:29 +01:00
2019-01-10 00:51:27 +01:00
2020-07-29 11:44:38 +02:00
} // updateMatrixDMABuffer (specific co-ords change)
2018-10-23 02:00:47 +02:00
2019-01-03 00:09:32 +01:00
/* Update the entire buffer with a single specific colour - quicker */
2020-11-28 10:45:30 +01:00
void MatrixPanel_I2S_DMA : : updateMatrixDMABuffer ( uint8_t red , uint8_t green , uint8_t blue )
2019-01-03 00:09:32 +01:00
{
2020-07-29 11:44:38 +02:00
if ( ! everything_OK ) return ;
2020-08-11 21:44:47 +02:00
/* https://ledshield.wordpress.com/2012/11/13/led-brightness-to-your-eye-gamma-correction-no/ */
/*
red = val2PWM ( red ) ;
green = val2PWM ( green ) ;
blue = val2PWM ( blue ) ;
*/
red = lumConvTab [ red ] ;
2020-12-07 10:25:29 +01:00
green = lumConvTab [ green ] ;
2020-08-11 21:44:47 +02:00
blue = lumConvTab [ blue ] ;
2020-07-29 11:44:38 +02:00
2020-12-07 10:25:29 +01:00
for ( uint8_t color_depth_idx = 0 ; color_depth_idx < PIXEL_COLOR_DEPTH_BITS ; color_depth_idx + + ) // color depth - 8 iterations
{
// let's precalculate RGB1 and RGB2 bits than flood it over the entire DMA buffer
2020-12-08 09:10:35 +01:00
uint16_t RGB_output_bits = 0 ;
2020-12-07 10:25:29 +01:00
uint8_t mask = ( 1 < < color_depth_idx ) ; // 24 bit color
2020-12-08 09:10:35 +01:00
/* Per the .h file, the order of the output RGB bits is:
* BIT_B2 , BIT_G2 , BIT_R2 , BIT_B1 , BIT_G1 , BIT_R1 */
RGB_output_bits | = ( bool ) ( blue & mask ) ; // --B
RGB_output_bits < < = 1 ;
RGB_output_bits | = ( bool ) ( green & mask ) ; // -BG
RGB_output_bits < < = 1 ;
RGB_output_bits | = ( bool ) ( red & mask ) ; // BGR
// Duplicate and shift across so we have have 6 populated bits of RGB1 and RGB2 pin values suitable for DMA buffer
RGB_output_bits | = RGB_output_bits < < BITS_RGB2_OFFSET ; //BGRBGR
//Serial.printf("Fill with: 0x%#06x\n", RGB_output_bits);
2020-12-07 10:25:29 +01:00
// iterate rows
for ( uint16_t matrix_frame_parallel_row = 0 ; matrix_frame_parallel_row < ROWS_PER_FRAME ; matrix_frame_parallel_row + + ) // half height - 16 iterations
2019-01-03 00:09:32 +01:00
{
2020-12-07 10:25:29 +01:00
rowColorDepthStruct * fb_row_malloc_ptr = ( rowColorDepthStruct * ) matrix_row_framebuffer_malloc [ matrix_frame_parallel_row ] ;
//Serial.printf("Accessing fb address: %d\r\n", fb_row_malloc_ptr);
// The destination for the pixel bitstream
rowBitStruct * p = & fb_row_malloc_ptr [ back_buffer_id ] . rowbits [ color_depth_idx ] ; //matrixUpdateFrames location to write to uint16_t's
2020-12-08 09:10:35 +01:00
2020-12-07 10:25:29 +01:00
// iterate pixels in a row
if ( fastmode ) {
2020-12-08 09:10:35 +01:00
for ( uint16_t x_coord = 0 ; x_coord < MATRIX_WIDTH ; x_coord + + ) {
2020-12-07 10:25:29 +01:00
uint16_t & v = p - > data [ ( x_coord % 2 ) ? ( x_coord - 1 ) : ( x_coord + 1 ) ] ; // take reference to bit vector
2020-12-08 09:10:35 +01:00
v & = BITMASK_RGB12_CLEAR ; // reset color bits
v | = RGB_output_bits ; // set new color bits
2020-12-07 10:25:29 +01:00
}
2020-12-08 09:10:35 +01:00
2020-12-07 10:25:29 +01:00
} else {
2020-12-08 09:10:35 +01:00
2020-12-07 10:25:29 +01:00
// Set ABCDE address bits vector
uint16_t _y = color_depth_idx ? matrix_frame_parallel_row : matrix_frame_parallel_row - 1 ;
2020-12-08 09:10:35 +01:00
_y < < = BITS_ADDR_OFFSET ; // shift row y-coord to match ABCDE bits in vector from 8 to 12
for ( uint16_t x_coord = 0 ; x_coord < MATRIX_WIDTH ; x_coord + + ) {
// We need to update the correct uint16_t in the rowBitStruct array, that gets sent out in parallel
// 16 bit parallel mode - Save the calculated value to the bitplane memory in reverse order to account for I2S Tx FIFO mode1 ordering
uint16_t rowBitStruct_x_coord_uint16_t_position = ( x_coord % 2 ) ? ( x_coord - 1 ) : ( x_coord + 1 ) ;
uint16_t & v = p - > data [ rowBitStruct_x_coord_uint16_t_position ] ; // persist what we already have
v = RGB_output_bits ; // set colot bits and reset all others
v | = _y ; // set ABCDE address bits for current row
2020-07-29 11:44:38 +02:00
// drive latch while shifting out last bit of RGB data
if ( ( x_coord ) = = PIXELS_PER_ROW - 1 ) v | = BIT_LAT ;
2020-12-07 10:25:29 +01:00
// need to disable OE after latch to hide row transition
// OR one clock before latch, otherwise can get ghosting
if ( ! x_coord | | ( x_coord ) = = PIXELS_PER_ROW - 2 ) {
v | = BIT_OE ; continue ;
}
// BRT OE
if ( ( color_depth_idx > lsbMsbTransitionBit | | ! color_depth_idx ) & & ( ( x_coord ) > = brightness ) ) {
v | = BIT_OE ; continue ; // For Brightness control
}
2020-07-29 11:44:38 +02:00
// special case for the bits *after* LSB through (lsbMsbTransitionBit) - OE is output after data is shifted, so need to set OE to fractional brightness
if ( color_depth_idx & & color_depth_idx < = lsbMsbTransitionBit ) {
// divide brightness in half for each bit below lsbMsbTransitionBit
int lsbBrightness = brightness > > ( lsbMsbTransitionBit - color_depth_idx + 1 ) ;
if ( ( x_coord ) > = lsbBrightness ) v | = BIT_OE ; // For Brightness
}
2020-12-07 10:25:29 +01:00
} // end of x-iterator
} // end x_coord iteration
} // end row iteration
} // colour depth loop (8)
2020-11-28 01:19:20 +01:00
} // updateMatrixDMABuffer (full frame paint)
/**
* pre - init procedures for specific drivers
*
*/
2020-11-28 10:45:30 +01:00
void MatrixPanel_I2S_DMA : : shiftDriver ( const shift_driver _drv , const int dma_r1_pin , const int dma_g1_pin , const int dma_b1_pin , const int dma_r2_pin , const int dma_g2_pin , const int dma_b2_pin , const int dma_a_pin , const int dma_b_pin , const int dma_c_pin , const int dma_d_pin , const int dma_e_pin , const int dma_lat_pin , const int dma_oe_pin , const int dma_clk_pin ) {
2020-11-28 01:19:20 +01:00
switch ( _drv ) {
2020-12-12 13:30:06 +01:00
case ICN2038S :
2020-11-28 01:19:20 +01:00
case FM6124 :
case FM6126A :
{
# if SERIAL_DEBUG
2020-11-28 10:45:30 +01:00
Serial . println ( F ( " MatrixPanel_I2S_DMA - initializing FM6124 driver... " ) ) ;
2020-11-28 01:19:20 +01:00
# endif
2020-12-07 10:25:29 +01:00
bool REG1 [ 16 ] = { 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 } ; // this sets global matrix brightness power
2020-12-05 01:18:25 +01:00
bool REG2 [ 16 ] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 0 } ; // a single bit enables the matrix output
for ( uint8_t _pin : { dma_r1_pin , dma_r2_pin , dma_g1_pin , dma_g2_pin , dma_b1_pin , dma_b2_pin , dma_clk_pin , dma_lat_pin , dma_oe_pin } )
pinMode ( _pin , OUTPUT ) ;
digitalWrite ( dma_oe_pin , HIGH ) ; // Disable Display
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_lat_pin , LOW ) ;
digitalWrite ( dma_clk_pin , LOW ) ;
2020-12-05 01:18:25 +01:00
// Send Data to control register REG1
// this sets the matrix brightness actually
2020-11-28 01:19:20 +01:00
for ( int l = 0 ; l < MATRIX_WIDTH ; l + + ) {
2020-12-05 01:18:25 +01:00
for ( uint8_t _pin : { dma_r1_pin , dma_r2_pin , dma_g1_pin , dma_g2_pin , dma_b1_pin , dma_b2_pin } )
digitalWrite ( _pin , REG1 [ l % 16 ] ) ; // we have 16 bits shifters and write the same value all over the matrix array
2020-11-28 01:19:20 +01:00
2020-12-07 10:25:29 +01:00
if ( l > MATRIX_WIDTH - 12 ) { // pull the latch 11 clocks before the end of matrix so that REG1 starts counting to save the value
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_lat_pin , HIGH ) ;
}
2020-12-05 01:18:25 +01:00
digitalWrite ( dma_clk_pin , HIGH ) ; // 1-clock pulse
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_clk_pin , LOW ) ;
}
2020-12-05 01:18:25 +01:00
// drop the latch and save data to the REG1 all over the FM6124 chips
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_lat_pin , LOW ) ;
digitalWrite ( dma_clk_pin , LOW ) ;
2020-12-05 01:18:25 +01:00
// Send Data to control register REG2 (enable LED output)
2020-11-28 01:19:20 +01:00
for ( int l = 0 ; l < MATRIX_WIDTH ; l + + ) {
2020-12-05 01:18:25 +01:00
for ( uint8_t _pin : { dma_r1_pin , dma_r2_pin , dma_g1_pin , dma_g2_pin , dma_b1_pin , dma_b2_pin } )
digitalWrite ( _pin , REG2 [ l % 16 ] ) ; // we have 16 bits shifters and we write the same value all over the matrix array
2020-11-28 01:19:20 +01:00
2020-12-07 10:25:29 +01:00
if ( l > MATRIX_WIDTH - 13 ) { // pull the latch 12 clocks before the end of matrix so that reg2 stars counting to save the value
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_lat_pin , HIGH ) ;
}
2020-12-05 01:18:25 +01:00
digitalWrite ( dma_clk_pin , HIGH ) ; // 1-clock pulse
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_clk_pin , LOW ) ;
}
2020-12-05 01:18:25 +01:00
// drop the latch and save data to the REG1 all over the FM6126 chips
2020-11-28 01:19:20 +01:00
digitalWrite ( dma_lat_pin , LOW ) ;
digitalWrite ( dma_clk_pin , LOW ) ;
}
2020-12-05 01:18:25 +01:00
break ;
2020-11-28 01:19:20 +01:00
case SHIFT :
default :
break ;
}
}
2020-12-07 10:25:29 +01:00
/**
* clear screen to black and reset service bits
*/
void MatrixPanel_I2S_DMA : : clearScreen ( ) {
if ( fastmode ) {
fastmode = false ; // we always clear screen in 'slow' mode to update all bits in DMA buffer
updateMatrixDMABuffer ( 0 , 0 , 0 ) ;
fastmode = true ; // restore fastmode
} else {
updateMatrixDMABuffer ( 0 , 0 , 0 ) ;
}
}