We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0b19d commit c1f0ef6Copy full SHA for c1f0ef6
src/ce/include/sys/lcd.h
@@ -114,13 +114,18 @@ do { \
114
/**
115
* Sets cursor image.
116
*
117
- * @param[in] data A pointer to 256 or 1024 bytes of packed 2bpp image data.
+ * @param[in] data A pointer to 256 or 1024 bytes of packed 2bpp image data,
118
+ * depending on the value of lcd_CrsrGetSize().
119
* @see lcd_cursor_size_t
120
121
* @note
122
* To use convimg to create the required data, add `bpp: 2`
123
* to the converts section in convimg.yaml corresponding
124
* to your image(s).
125
+ *
126
+ * @note
127
+ * If the cursor size is set to small (32x32), this will copy the data
128
+ * to image index 0.
129
*/
130
#define lcd_CrsrSetImage(data) \
131
do { \
0 commit comments