From f8f6b4771077e9710425ec7486b1657acdb5cc2e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 8 Sep 2023 20:12:40 +0530 Subject: [PATCH] Nook driver: Add support for Nook Glowlight Plus 2023 --- src/calibre/devices/nook/driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/nook/driver.py b/src/calibre/devices/nook/driver.py index fe50e03580..57e47cd568 100644 --- a/src/calibre/devices/nook/driver.py +++ b/src/calibre/devices/nook/driver.py @@ -90,8 +90,9 @@ class NOOK_COLOR(NOOK): 0xc, # Glowlight from 2019 0xd, # Glowlight from 2021 0xe, # Glowlight from 2021 + 0xf, # Glowlight from 2023 ] - BCD = [0x216, 0x9999, 0x409] + BCD = [0x216, 0x9999, 0x409, 0x440] WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['EBOOK_DISK', 'NOOK_TABLET', 'NOOK_SIMPLETOUCH', 'NOOK_GLOWLIGHT']