15 Commits

Author SHA1 Message Date
hasslesstech 4f8fe7ba39 [DNI] refresh ancient code that could hang the system
- remove the usage of ancient PANIC macro
- remove the unused fahrenheit conversion code
- add proper detection and printouts of HAL errors
2025-04-20 11:43:00 +03:00
hasslesstech d145aa3661 add test number tags automatically written to framebuffers and accomodate module formatting to make room for those 2025-04-19 16:53:19 +03:00
hasslesstech c9b90a679e [lcd] forbid writing outside of current framebuffer memory 2025-04-19 15:54:14 +03:00
hasslesstech ee3249beca [lcd] forbid writing to non-existant framebuffers 2025-04-19 15:04:15 +03:00
hasslesstech cc32a3092a [main] add macros for checking specific buttons 2025-04-19 14:52:22 +03:00
hasslesstech e65c4d612c [main] large code cleanup 2025-04-19 14:52:22 +03:00
hasslesstech 7940c95b23 [main] fix: cast wrongly converted integer back into the pointer to remove warning 2025-04-19 14:52:22 +03:00
hasslesstech 5bbbc9fe44 [main] enhancement: remove delay between running tests 2025-04-19 14:52:22 +03:00
hasslesstech 4c9c1ff2c8 [PCA9685] remove OUT ENABLED label as it is no longer used in interactive tests 2025-04-19 14:52:22 +03:00
hasslesstech 0eb025d3d4 add new UI for testing phase, update modules to indicate success or failure in the return value 2025-04-19 14:52:22 +03:00
hasslesstech 87eb642adc record change in .cproject which seems impossible to revert 2025-04-19 14:52:22 +03:00
hasslesstech 5c9846fce3 [main] add simple navigation between test reports 2025-04-19 14:52:22 +03:00
hasslesstech 063ed8bb51 [lcd] fix: add display_load prototype 2025-04-19 14:52:22 +03:00
hasslesstech 3ccc0ca0f3 [lcd] add support for operating on virtual framebuffers
Current implementation contains full support for:
- transparent switching between direct and framebuffer rendering modes
- writing characters to framebuffers
- loading frame from memory to physical display

As well as partial support for instruction writes including:
- resetting the display (clears memory, sets cursor at 0:0, switches to increment mode)
- switching between increment/decrement modes
- setting cursor position
2025-04-19 14:52:22 +03:00
hasslesstech 9370ddbadd [PCA9685] fix: add HAL_OK case to remove warning 2025-04-14 20:24:29 +03:00
11 changed files with 144 additions and 241 deletions
+9 -9
View File
@@ -13,9 +13,9 @@ int EEPROM_24AA02E48_run_test(void)
size_t err_count = 0; size_t err_count = 0;
// write the Address Pointer register // write the Address Pointer register
uint8_t data_buffer[13]; uint8_t data_buffer[9];
data_buffer[12] = '\0'; data_buffer[8] = '\0';
data_buffer[0] = 0xF4; data_buffer[0] = 0xF8;
for (size_t t = 0; t < 5; t++) { for (size_t t = 0; t < 5; t++) {
op_result = HAL_I2C_Master_Transmit(&hi2c1, 0xA0, data_buffer, 1, 2000); op_result = HAL_I2C_Master_Transmit(&hi2c1, 0xA0, data_buffer, 1, 2000);
@@ -26,7 +26,7 @@ int EEPROM_24AA02E48_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("24AA02E48 EEPROM"); display_write_data_seq("24AA02E48 EEPROM");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("W "); display_write_data_seq("W ");
display_write_data_byte('1' + t); display_write_data_byte('1' + t);
display_write_data_seq("/5 "); display_write_data_seq("/5 ");
@@ -52,7 +52,7 @@ int EEPROM_24AA02E48_run_test(void)
} }
for (size_t t = 0; t < 5; t++) { for (size_t t = 0; t < 5; t++) {
op_result = HAL_I2C_Master_Receive(&hi2c1, 0xA1, data_buffer, 12, 2000); op_result = HAL_I2C_Master_Receive(&hi2c1, 0xA1, data_buffer, 8, 2000);
if (op_result) { if (op_result) {
err_count++; err_count++;
@@ -60,7 +60,7 @@ int EEPROM_24AA02E48_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("24AA02E48 EEPROM"); display_write_data_seq("24AA02E48 EEPROM");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("R "); display_write_data_seq("R ");
display_write_data_byte('1' + t); display_write_data_byte('1' + t);
display_write_data_seq("/5 "); display_write_data_seq("/5 ");
@@ -89,15 +89,15 @@ int EEPROM_24AA02E48_run_test(void)
display_write_data_seq("24AA02E48 EEPROM"); display_write_data_seq("24AA02E48 EEPROM");
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count / 10 % 10); display_write_data_byte('0' + (err_count / 10) % 10);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq("E "); display_write_data_seq("E ");
display_write_data_seq((char *) data_buffer); display_write_data_seq((char *) data_buffer);
return 1; return 1;
} else { } else {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK "); display_write_data_seq("OK ");
display_write_data_seq((char *) data_buffer); display_write_data_seq((char *) data_buffer);
+2 -2
View File
@@ -54,13 +54,13 @@ int CS43L22_run_test(void)
display_write_data_seq("CS43L22 Audio"); display_write_data_seq("CS43L22 Audio");
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq(" Errors"); display_write_data_seq(" Errors");
return 1; return 1;
} else { } else {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
return 0; return 0;
+48 -35
View File
@@ -3,25 +3,23 @@
#include "lcd.h" #include "lcd.h"
#include "DNI.h" #include "DNI.h"
static uint32_t DNI_read(void) static int DNI_read(void)
{ {
HAL_ADC_Start(&hadc1); HAL_ADC_Start(&hadc1);
if (HAL_ADC_PollForConversion(&hadc1, 100) != HAL_OK)
PANIC(0x4000);
return HAL_ADC_GetValue(&hadc1); HAL_StatusTypeDef s = HAL_ADC_PollForConversion(&hadc1, 100);
if (HAL_OK != s)
return -s;
else
return HAL_ADC_GetValue(&hadc1);
} }
static int DNI_convert_to_celsius(uint32_t value) static int DNI_convert_to_celsius(int value)
{ {
return (2512 - value) << 2; return (2512 - value) << 2;
} }
static int DNI_convert_to_fahrenheit(uint32_t value)
{
return (2953 - value) * 50 / 7;
}
static void DNI_print(int temperature) static void DNI_print(int temperature)
{ {
int add_sign = temperature < 0; int add_sign = temperature < 0;
@@ -50,27 +48,48 @@ static void DNI_print(int temperature)
} }
if (add_sign) { if (add_sign) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 9);
display_write_data_byte('-'); display_write_data_byte('-');
} }
} }
static void DNI_print_celsius(int temperature) static void DNI_print_celsius(int temperature)
{ {
DISPLAY_SET_CURSOR(1, 7); DISPLAY_SET_CURSOR(1, 15);
DISPLAY_SET_DECREMENT; DISPLAY_SET_DECREMENT;
display_write_data_seq("C "); display_write_data_seq("C ");
DNI_print(temperature); DNI_print(temperature);
} }
static void DNI_print_fahrenheit(int temperature) static void print_ok(void)
{ {
DISPLAY_SET_CURSOR(1, 7); DISPLAY_SET_CURSOR(1, 4);
DISPLAY_SET_DECREMENT; DISPLAY_SET_INCREMENT;
display_write_data_seq("F "); display_write_data_seq("OK");
}
DNI_print(temperature); static void print_error(int err_code)
{
DISPLAY_SET_CURSOR(1, 4);
DISPLAY_SET_INCREMENT;
switch (err_code) {
case HAL_OK:
break;
case HAL_ERROR:
display_write_data_seq("HAL_ERROR");
break;
case HAL_BUSY:
display_write_data_seq("HAL_BUSY");
break;
case HAL_TIMEOUT:
display_write_data_seq("HAL_TIMEOUT");
break;
default:
display_write_data_seq("WRONG ERROR");
break;
}
} }
int DNI_show_celsius(void) int DNI_show_celsius(void)
@@ -80,23 +99,17 @@ int DNI_show_celsius(void)
display_write_data_seq("DNI Temperature"); display_write_data_seq("DNI Temperature");
uint32_t value = DNI_read(); int value = DNI_read();
int temp = DNI_convert_to_celsius(value);
DNI_print_celsius(temp);
return 0; if (value < 0) {
} print_error(-value);
return 1;
int DNI_show_fahrenheit(void) } else {
{ int temp = DNI_convert_to_celsius(value);
DISPLAY_CLEAR; DNI_print_celsius(temp);
DISPLAY_SET_INCREMENT;
print_ok();
display_write_data_seq("DNI Temperature");
return 0;
uint32_t value = DNI_read(); }
int temp = DNI_convert_to_fahrenheit(value);
DNI_print_fahrenheit(temp);
return 0;
} }
+11 -11
View File
@@ -33,7 +33,7 @@ static void print_error_message(HAL_StatusTypeDef result, size_t *err_count, siz
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("LIS302DL Accel "); display_write_data_seq("LIS302DL Accel ");
display_write_data_seq(postfix); display_write_data_seq(postfix);
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq(prefix); display_write_data_seq(prefix);
display_write_data_byte(' '); display_write_data_byte(' ');
@@ -125,14 +125,14 @@ int LIS302DL_run_test(void)
// print the execution stats // print the execution stats
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count / 10 % 10); display_write_data_byte('0' + (err_count / 10) % 10);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq(" errs"); display_write_data_seq(" errs");
return 1; return 1;
} else { } else {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
return 0; return 0;
@@ -152,23 +152,23 @@ int LIS302DL_run_test_dynamic(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("LIS302DL Accel D"); display_write_data_seq("LIS302DL Accel D");
// output retrieved values
print_at(data_xyz[2], 14);
print_at(data_xyz[1], 11);
print_at(data_xyz[0], 8);
// print the execution stats // print the execution stats
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count / 10 % 10); display_write_data_byte('0' + err_count / 10 % 10);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq(" errs"); display_write_data_seq(" errs");
return 1; return 1;
} else { } else {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
// output retrieved values
print_at(data_xyz[2], 14);
print_at(data_xyz[1], 11);
print_at(data_xyz[0], 8);
return 0; return 0;
} }
} }
+5 -5
View File
@@ -10,7 +10,7 @@ extern I2C_HandleTypeDef hi2c1;
static void print_error_message(HAL_StatusTypeDef result, size_t *err_count, size_t t, char *prefix) static void print_error_message(HAL_StatusTypeDef result, size_t *err_count, size_t t, char *prefix)
{ {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq(prefix); display_write_data_seq(prefix);
display_write_data_byte(' '); display_write_data_byte(' ');
@@ -82,12 +82,12 @@ int LSM9DS1_test_accel(void)
FAILSAFE_POST_OP_ACCEL("R"); FAILSAFE_POST_OP_ACCEL("R");
if (!err_count) { if (!err_count) {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
return 0; return 0;
} else { } else {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + ((err_count / 10) % 10)); display_write_data_byte('0' + ((err_count / 10) % 10));
display_write_data_byte('0' + (err_count % 10)); display_write_data_byte('0' + (err_count % 10));
display_write_data_seq(" errors"); display_write_data_seq(" errors");
@@ -124,12 +124,12 @@ int LSM9DS1_test_magnet(void)
FAILSAFE_POST_OP_MAGNET("R"); FAILSAFE_POST_OP_MAGNET("R");
if (!err_count) { if (!err_count) {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
return 0; return 0;
} else { } else {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + ((err_count / 10) % 10)); display_write_data_byte('0' + ((err_count / 10) % 10));
display_write_data_byte('0' + (err_count % 10)); display_write_data_byte('0' + (err_count % 10));
display_write_data_seq(" errors"); display_write_data_seq(" errors");
+7 -7
View File
@@ -22,12 +22,12 @@ int MP45DT02_run_test(void)
display_write_data_seq("MP45DT02 Mic"); display_write_data_seq("MP45DT02 Mic");
if (!t) { if (!t) {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
} else { } else {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + t); display_write_data_byte('0' + t);
display_write_data_seq(" full 0 samples"); display_write_data_seq(" 0 samples");
} }
return 0; return 0;
@@ -37,9 +37,9 @@ int MP45DT02_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("MP45DT02 Mic"); display_write_data_seq("MP45DT02 Mic");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('1' + t); display_write_data_byte('1' + t);
display_write_data_seq("/5: no 1 sampled"); display_write_data_seq("/5: all zeros");
HAL_Delay(1000); HAL_Delay(1000);
} }
@@ -48,8 +48,8 @@ int MP45DT02_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("MP45DT02 Mic"); display_write_data_seq("MP45DT02 Mic");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("No good samples!"); display_write_data_seq("NO ONES");
return 1; return 1;
} }
+5 -3
View File
@@ -30,7 +30,7 @@ int PCA9685_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("PCA9685 PWM"); display_write_data_seq("PCA9685 PWM");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("B"); display_write_data_seq("B");
display_write_data_byte('0' + i); display_write_data_byte('0' + i);
@@ -40,6 +40,8 @@ int PCA9685_run_test(void)
display_write_data_seq("/5 "); display_write_data_seq("/5 ");
switch (op_result) { switch (op_result) {
case HAL_OK:
break;
case HAL_ERROR: case HAL_ERROR:
display_write_data_seq("ERROR"); display_write_data_seq("ERROR");
break; break;
@@ -62,14 +64,14 @@ int PCA9685_run_test(void)
display_write_data_seq("PCA9685 PWM"); display_write_data_seq("PCA9685 PWM");
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count / 10 % 10); display_write_data_byte('0' + err_count / 10 % 10);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq(" errors"); display_write_data_seq(" errors");
return 1; return 1;
} else { } else {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
return 0; return 0;
+5 -5
View File
@@ -30,7 +30,7 @@ int SST25VF016B_run_test(void)
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("SST25VF016B Flas"); display_write_data_seq("SST25VF016B Flas");
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('1' + t); display_write_data_byte('1' + t);
display_write_data_seq("/5 "); display_write_data_seq("/5 ");
@@ -58,7 +58,7 @@ int SST25VF016B_run_test(void)
display_write_data_seq("SST25VF016B Flas"); display_write_data_seq("SST25VF016B Flas");
if (err_count) { if (err_count) {
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('0' + err_count % 10); display_write_data_byte('0' + err_count % 10);
display_write_data_seq(" Errors"); display_write_data_seq(" Errors");
@@ -67,7 +67,7 @@ int SST25VF016B_run_test(void)
for (size_t i = 0; i < 4; i += 2) { for (size_t i = 0; i < 4; i += 2) {
// odd reads MUST result in 0xBF // odd reads MUST result in 0xBF
if (rx_buffer[4+i] != 0xBF) { if (rx_buffer[4+i] != 0xBF) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('B'); display_write_data_byte('B');
display_write_data_byte('1'+i); display_write_data_byte('1'+i);
display_write_data_seq(" WRONG"); display_write_data_seq(" WRONG");
@@ -81,7 +81,7 @@ int SST25VF016B_run_test(void)
for (size_t i = 1; i < 4; i += 2) { for (size_t i = 1; i < 4; i += 2) {
// even reads MUST result in 0x41 // even reads MUST result in 0x41
if (rx_buffer[4+i] != 0x41) { if (rx_buffer[4+i] != 0x41) {
DISPLAY_SET_CURSOR(1, 0); DISPLAY_SET_CURSOR(1, 4);
display_write_data_byte('B'); display_write_data_byte('B');
display_write_data_byte('1'+i); display_write_data_byte('1'+i);
display_write_data_seq(" WRONG"); display_write_data_seq(" WRONG");
@@ -92,7 +92,7 @@ int SST25VF016B_run_test(void)
} }
} }
DISPLAY_SET_CURSOR(1, 1); DISPLAY_SET_CURSOR(1, 4);
display_write_data_seq("OK"); display_write_data_seq("OK");
} }
+6
View File
@@ -136,6 +136,12 @@ static void display_write_data_byte_direct(uint8_t code)
static void display_write_data_byte_framebuffer(uint8_t code) static void display_write_data_byte_framebuffer(uint8_t code)
{ {
if (display_current_frame >= DISPLAY_FRAMES_AVAILABLE)
return;
if (((int) des.cursor_offset >= 32) || ((int) des.cursor_offset < 0))
return;
display_framebuffer[16*2*display_current_frame + des.cursor_offset] = (char) code; display_framebuffer[16*2*display_current_frame + des.cursor_offset] = (char) code;
des.cursor_offset += des.next ? -1 : 1; des.cursor_offset += des.next ? -1 : 1;
} }
+44 -162
View File
@@ -46,6 +46,17 @@
#define WAIT_UNTIL_CB_PRESSED while (!HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_0) && HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_8)) #define WAIT_UNTIL_CB_PRESSED while (!HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_0) && HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_8))
#define WAIT_UNTIL_CB_RELEASED while (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_0) || !HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_8)) #define WAIT_UNTIL_CB_RELEASED while (HAL_GPIO_ReadPin(GPIOA, GPIO_PIN_0) || !HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_8))
#define UB (GPIOA->IDR & GPIO_PIN_0)
#define SWT1 !(GPIOC->IDR & GPIO_PIN_11)
#define SWT2 !(GPIOA->IDR & GPIO_PIN_15)
#define SWT3 !(GPIOC->IDR & GPIO_PIN_9)
#define SWT4 !(GPIOC->IDR & GPIO_PIN_6)
#define SWT5 !(GPIOC->IDR & GPIO_PIN_8)
#define WAIT_UNTIL_ALL_BUTTONS_RELEASED do {} while ( UB || SWT1 || SWT2 || SWT3 || SWT4 || SWT5 )
#define LEN(x) ( sizeof(x) / sizeof((x)[0]) )
/* USER CODE END PD */ /* USER CODE END PD */
/* Private macro -------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/
@@ -68,22 +79,19 @@ extern size_t display_current_frame;
/* USER CODE BEGIN PV */ /* USER CODE BEGIN PV */
int ((*executors[])(void)) = { static const int ((*executors[])(void)) = {
DNI_show_celsius, DNI_show_celsius,
DNI_show_fahrenheit,
PCA9685_run_test, PCA9685_run_test,
EEPROM_24AA02E48_run_test, EEPROM_24AA02E48_run_test,
CS43L22_run_test, CS43L22_run_test,
SST25VF016B_run_test, SST25VF016B_run_test,
LIS302DL_run_test, LIS302DL_run_test,
LIS302DL_run_test_dynamic,
MP45DT02_run_test, MP45DT02_run_test,
LSM9DS1_test_accel, LSM9DS1_test_accel,
LSM9DS1_test_magnet LSM9DS1_test_magnet
}; };
void ((*cleanup_functions[])(void)) = { static const void ((*cleanup_functions[])(void)) = {
NULL,
NULL, NULL,
PCA9685_cleanup, PCA9685_cleanup,
NULL, NULL,
@@ -91,29 +99,10 @@ void ((*cleanup_functions[])(void)) = {
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL,
LSM9DS1_cleanup_accel, LSM9DS1_cleanup_accel,
NULL NULL
}; };
int delay_between_runs[] = {
250,
250,
-1,
-1,
-1,
-1,
-1,
200,
-1,
-1,
-1
};
size_t current_executor_id = 0;
size_t buttons_interrupt_enabled;
/* USER CODE END PV */ /* USER CODE END PV */
/* Private function prototypes -----------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/
@@ -131,67 +120,7 @@ static void MX_I2S2_Init(void);
/* Private user code ---------------------------------------------------------*/ /* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */ /* USER CODE BEGIN 0 */
void switch_to_next_test(void) static void button_init_and_test(void)
{
current_executor_id += 1;
current_executor_id %= 11;
}
void buttons_switch_to_interrupt(void)
{
// save current executor ID
size_t tmp = current_executor_id;
// configure user button
GPIO_InitTypeDef GPIO_InitStruct = {0};
GPIO_InitStruct.Pin = GPIO_PIN_0;
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
HAL_NVIC_SetPriority(EXTI0_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(EXTI0_IRQn);
// configure SW5 (alternative advancing method)
GPIO_InitStruct.Pin = GPIO_PIN_8;
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
HAL_NVIC_SetPriority(EXTI9_5_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(EXTI9_5_IRQn);
// restore current executor ID
current_executor_id = tmp;
// set interrupt mode flag
buttons_interrupt_enabled = 1;
}
void buttons_switch_to_input(void)
{
// configure user button
GPIO_InitTypeDef GPIO_InitStruct = {0};
GPIO_InitStruct.Pin = GPIO_PIN_0;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
HAL_NVIC_DisableIRQ(EXTI0_IRQn);
// configure SW5 (alternative input method)
GPIO_InitStruct.Pin = GPIO_PIN_8;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
HAL_NVIC_DisableIRQ(EXTI9_5_IRQn);
// clear interrupt mode flag
buttons_interrupt_enabled = 0;
}
void button_init_and_test(void)
{ {
// letting the buttons be tested // letting the buttons be tested
display_write_data_seq("Fill any bar:"); display_write_data_seq("Fill any bar:");
@@ -201,11 +130,11 @@ void button_init_and_test(void)
size_t pressed_elements; size_t pressed_elements;
uint32_t sw_button_locations[5][2] = { uint32_t sw_button_locations[5][2] = {
{GPIOC, GPIO_PIN_11}, {(uint32_t) GPIOC, (uint32_t) GPIO_PIN_11},
{GPIOA, GPIO_PIN_15}, {(uint32_t) GPIOA, (uint32_t) GPIO_PIN_15},
{GPIOC, GPIO_PIN_9}, {(uint32_t) GPIOC, (uint32_t) GPIO_PIN_9},
{GPIOC, GPIO_PIN_6}, {(uint32_t) GPIOC, (uint32_t) GPIO_PIN_6},
{GPIOC, GPIO_PIN_8} {(uint32_t) GPIOC, (uint32_t) GPIO_PIN_8}
}; };
do { do {
@@ -243,16 +172,16 @@ void button_init_and_test(void)
display_write_data_seq("Release buttons"); display_write_data_seq("Release buttons");
GPIOD->ODR = 0x1000; GPIOD->ODR = 0x1000;
HAL_Delay(500); HAL_Delay(300);
GPIOD->ODR = 0x2000; GPIOD->ODR = 0x2000;
HAL_Delay(500); HAL_Delay(300);
GPIOD->ODR = 0x4000; GPIOD->ODR = 0x4000;
HAL_Delay(500); HAL_Delay(300);
GPIOD->ODR = 0x8000; GPIOD->ODR = 0x8000;
HAL_Delay(500); HAL_Delay(300);
// waiting for control buttons to be released // waiting for all buttons to be released
WAIT_UNTIL_CB_RELEASED; WAIT_UNTIL_ALL_BUTTONS_RELEASED;
GPIOD->ODR = 0x0000; GPIOD->ODR = 0x0000;
HAL_Delay(200); HAL_Delay(200);
} }
@@ -294,7 +223,6 @@ int main(void)
MX_TIM2_Init(); MX_TIM2_Init();
MX_I2S2_Init(); MX_I2S2_Init();
/* USER CODE BEGIN 2 */ /* USER CODE BEGIN 2 */
buttons_interrupt_enabled = 0;
HAL_TIM_Base_Start(&htim2); HAL_TIM_Base_Start(&htim2);
TIM2->CNT = 0; TIM2->CNT = 0;
@@ -310,9 +238,7 @@ int main(void)
size_t successful_tests = 0; size_t successful_tests = 0;
size_t failed_tests = 0; size_t failed_tests = 0;
//display_to_framebuffer(); for (display_current_frame = 1; display_current_frame < LEN(executors)+1; display_current_frame++)
for (display_current_frame = 1; display_current_frame < 12; display_current_frame++)
{ {
DISPLAY_CLEAR; DISPLAY_CLEAR;
display_write_data_seq("Testing..."); display_write_data_seq("Testing...");
@@ -339,6 +265,13 @@ int main(void)
if (cleanup_functions[display_current_frame-1]) if (cleanup_functions[display_current_frame-1])
cleanup_functions[display_current_frame-1](); cleanup_functions[display_current_frame-1]();
// write test number tag onto this framebuffer
DISPLAY_SET_CURSOR(1, 0);
DISPLAY_SET_INCREMENT;
display_write_data_byte('T');
display_write_data_byte('0' + (display_current_frame / 10) % 10);
display_write_data_byte('0' + display_current_frame % 10);
display_to_direct(); display_to_direct();
} }
@@ -361,94 +294,43 @@ int main(void)
display_to_direct(); display_to_direct();
/* USER CODE END 2 */
if (buttons_interrupt_enabled) /* Infinite loop */
buttons_switch_to_input(); /* USER CODE BEGIN WHILE */
while (1) { while (1) {
// wait until all buttons are released WAIT_UNTIL_ALL_BUTTONS_RELEASED;
while (
(GPIOA->IDR & GPIO_PIN_0) ||
!(GPIOC->IDR & GPIO_PIN_11) ||
!(GPIOC->IDR & GPIO_PIN_8) ||
!(GPIOC->IDR & GPIO_PIN_9) ||
!(GPIOC->IDR & GPIO_PIN_6) ||
!(GPIOA->IDR & GPIO_PIN_15)
) { asm("nop"); }
display_load(display_current_frame); display_load(display_current_frame);
while (1) { while (1) {
// go to next report // go to next report
if ( if (UB || SWT1 || SWT5) {
(GPIOA->IDR & GPIO_PIN_0) ||
!(GPIOC->IDR & GPIO_PIN_11) ||
!(GPIOC->IDR & GPIO_PIN_8)
) {
display_current_frame += 1; display_current_frame += 1;
display_current_frame %= 12; display_current_frame %= LEN(executors)+1;
break; break;
} }
// go to previous report // go to previous report
else if ( else if (SWT3 || SWT4) {
!(GPIOC->IDR & GPIO_PIN_9) ||
!(GPIOC->IDR & GPIO_PIN_6)
) {
display_current_frame -= 1; display_current_frame -= 1;
if (display_current_frame == 0xFFFFFFFFU) if ((int) display_current_frame == -1)
display_current_frame = 11; display_current_frame = LEN(executors);
break; break;
} }
// return to summary frame // return to summary frame
else if ( else if (SWT2) {
!(GPIOA->IDR & GPIO_PIN_15)
) {
display_current_frame = 0; display_current_frame = 0;
break; break;
} }
} }
}
/* USER CODE END 2 */
/* Infinite loop */
/* USER CODE BEGIN WHILE */
/*
while (1)
{
if (delay_between_runs[current_executor_id] == -1 && buttons_interrupt_enabled)
buttons_switch_to_input();
else if (delay_between_runs[current_executor_id] != -1 && !buttons_interrupt_enabled)
buttons_switch_to_interrupt();
executors[current_executor_id]();
if (delay_between_runs[current_executor_id] == -1) {
WAIT_UNTIL_CB_PRESSED;
HAL_Delay(150);
GPIOD->BSRR = 0x1000;
WAIT_UNTIL_CB_RELEASED;
HAL_Delay(150);
GPIOD->BSRR = 0x1000 << 16;
if (cleanup_functions[current_executor_id])
cleanup_functions[current_executor_id]();
switch_to_next_test();
} else {
HAL_Delay(delay_between_runs[current_executor_id]);
}
*/
/* USER CODE END WHILE */ /* USER CODE END WHILE */
/* USER CODE BEGIN 3 */ /* USER CODE BEGIN 3 */
//} }
/* USER CODE END 3 */ /* USER CODE END 3 */
} }
+2 -2
View File
@@ -204,7 +204,7 @@ void EXTI0_IRQHandler(void)
{ {
GPIOD->ODR = 0x1000; GPIOD->ODR = 0x1000;
switch_to_next_test(); //switch_to_next_test();
for (int i = 300000; i > 0; i--) asm("nop"); for (int i = 300000; i > 0; i--) asm("nop");
@@ -217,7 +217,7 @@ void EXTI9_5_IRQHandler(void)
{ {
GPIOD->ODR = 0x1000; GPIOD->ODR = 0x1000;
switch_to_next_test(); //switch_to_next_test();
for (int i = 300000; i > 0; i--) asm("nop"); for (int i = 300000; i > 0; i--) asm("nop");