From d3175992eaa787cf8d5af83be0f6020a66c1a5d1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:16:02 -0500 Subject: [PATCH] spelling: chunksize Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python_libs/pblprog/pebble/programmer/ftdi_swd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_libs/pblprog/pebble/programmer/ftdi_swd.py b/python_libs/pblprog/pebble/programmer/ftdi_swd.py index b83e4596..efc7cbf6 100644 --- a/python_libs/pblprog/pebble/programmer/ftdi_swd.py +++ b/python_libs/pblprog/pebble/programmer/ftdi_swd.py @@ -30,7 +30,7 @@ class FTDISerialWireDebug(object): self._ftdi = None raise - # get the FTDI FIFO size and increase the chuncksize to match + # get the FTDI FIFO size and increase the chunksize to match self._ftdi_fifo_size = min(self._ftdi.fifo_sizes) self._ftdi.write_data_set_chunksize(self._ftdi_fifo_size)