【STM32G431RBTx】备战蓝桥杯嵌入式→决赛试题→第九届

news2024/12/27 11:38:36

文章目录

    • 前言
    • 一、题目![请添加图片描述](https://img-blog.csdnimg.cn/ccdd07679c9b4d86b6faad3554637eba.png)
    • 二、模块初始化
    • 三、代码实现
      • interrupt.h:
      • interrupt.c:
      • main.h:
      • main.c:
    • 四、完成效果
    • 五、总结

前言

一、题目请添加图片描述

请添加图片描述
请添加图片描述
请添加图片描述

二、模块初始化

1.LCD这里不用配置,直接使用提供的资源包就行
2.AKEY, 打开双ADC采集再对采集值处理按键
3.LED:开启PC8-15,PD2输出模式就行了。
4.定时器:TIM3(按键消抖定时器):PSC:80-1,ARR:10000-1,TIM4(LED闪烁计时器):PSC:80-1,ARR:999
5.PA4:ADC_IN17,PA5:ADC_IN13都要为Single-ended模式
6.i2c:设置PB6,PB7为GPIO_Output模式即可
7.打开串口串行输出

三、代码实现

bsp组中共有:
在这里插入图片描述

interrupt.h:

#ifndef __INTERRUPT_H__
#define __INTERRUPT_H__

#include "main.h"
#include "stdbool.h"

struct keys
{
	bool key_sta;
	unsigned char key_judge;
	bool single_flag;
	unsigned int key_time;
	bool long_flag;
};

#endif

interrupt.c:

#include "interrupt.h"
#include "akey.h"
#include "lcd.h"

struct keys akey[8] = {0, 0, 0, 0, 0};
unsigned char keyioAnti;
unsigned int LEDTick;
extern unsigned char LED;
unsigned char LED1Type;
unsigned int LEDpulse;

void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef * htim)
{
	if(htim->Instance == TIM3)
	{
		ADC_Key_IO();
		keyioAnti = ~keyio;
		akey[0].key_sta = keyioAnti >> 0 & 0x01;
		akey[1].key_sta = keyioAnti >> 1 & 0x01;
		akey[2].key_sta = keyioAnti >> 2 & 0x01;
		akey[3].key_sta = keyioAnti >> 3 & 0x01;
		akey[4].key_sta = keyioAnti >> 4 & 0x01;
		akey[5].key_sta = keyioAnti >> 5 & 0x01;
		akey[6].key_sta = keyioAnti >> 6 & 0x01;
		akey[7].key_sta = keyioAnti >> 7 & 0x01;
		for(unsigned char i= 0; i < 8 ;i++)
		{
			switch(akey[i].key_judge)
			{
				case 0:
				{
					if(akey[i].key_sta == 0)
					{
						akey[i].key_judge = 1;
						akey[i].key_time = 0;
//						LCD_DisplayStringLine(Line0, "here");
					}
					break;
				}
				case 1:
				{
					if(akey[i].key_sta == 0)
					{
						akey[i].key_judge = 2;
					}
					else
					{
						akey[i].key_judge = 0;
					}
					break;
				}
				case 2:
				{
					if(akey[i].key_sta == 1)
					{
						akey[i].key_judge = 0;
						if(akey[i].key_judge < 80)
						{
							akey[i].single_flag = 1;
						}
					}
					else
					{
						akey[i].key_time++;
						if(akey[i].key_time >= 80)
						{
							akey[i].long_flag = 1;
						}
					}
					break;
				}
			}
		}
	}
	if(htim->Instance == TIM4)
	{
		LEDTick++;
		if(LEDTick == LEDpulse)
		{
			LEDTick = 0;
			LED1Type = !LED1Type;
			LED = LED & 0xfe | LED1Type;
		}
	}
}

main.h:

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.h
  * @brief          : Header for main.c file.
  *                   This file contains the common defines of the application.
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 2023 STMicroelectronics.
  * All rights reserved.
  *
  * This software is licensed under terms that can be found in the LICENSE file
  * in the root directory of this software component.
  * If no LICENSE file comes with this software, it is provided AS-IS.
  *
  ******************************************************************************
  */
/* USER CODE END Header */

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __MAIN_H
#define __MAIN_H

#ifdef __cplusplus
extern "C" {
#endif

/* Includes ------------------------------------------------------------------*/
#include "stm32g4xx_hal.h"

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */

/* USER CODE END Includes */

/* Exported types ------------------------------------------------------------*/
/* USER CODE BEGIN ET */

/* USER CODE END ET */

/* Exported constants --------------------------------------------------------*/
/* USER CODE BEGIN EC */

/* USER CODE END EC */

/* Exported macro ------------------------------------------------------------*/
/* USER CODE BEGIN EM */

/* USER CODE END EM */

/* Exported functions prototypes ---------------------------------------------*/
void Error_Handler(void);

/* USER CODE BEGIN EFP */

/* USER CODE END EFP */

/* Private defines -----------------------------------------------------------*/

/* USER CODE BEGIN Private defines */
#define DATA 0
#define PARA 1
/* USER CODE END Private defines */

#ifdef __cplusplus
}
#endif

#endif /* __MAIN_H */

main.c:

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.c
  * @brief          : Main program body
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 2023 STMicroelectronics.
  * All rights reserved.
  *
  * This software is licensed under terms that can be found in the LICENSE file
  * in the root directory of this software component.
  * If no LICENSE file comes with this software, it is provided AS-IS.
  *
  ******************************************************************************
  */
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "adc.h"
#include "tim.h"
#include "usart.h"
#include "gpio.h"

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "akey.h"
#include "dadc.h"
#include "lcd.h"
#include "stdio.h"
#include "interrupt.h"
#include "i2c.h"
#include "stdlib.h"
#include "string.h"
#include "led.h"
/* USER CODE END Includes */

/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */

/* USER CODE END PTD */

/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
/* USER CODE END PD */

/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */

/* USER CODE END PM */

/* Private variables ---------------------------------------------------------*/

/* USER CODE BEGIN PV */
char text[30];
extern struct keys akey[8];
unsigned char eeprom_writedata;
unsigned char eeprom_readdata;
double weight;
unsigned char DisplayMode;
unsigned char goodsCode;
double Price[3] = {9.80, 9.80, 9.80};
double total;
unsigned char SettingIndex;
double TempPrice[3] = {9.80, 9.80, 9.80};
unsigned char SetN;
unsigned char keywait;
unsigned char LED;
extern unsigned int LEDpulse;
/* USER CODE END PV */

/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
/* USER CODE BEGIN PFP */
void DisposeKey(void);
void LCD_Disp(void);
/* USER CODE END PFP */

/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */

/* USER CODE END 0 */

/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{
  /* USER CODE BEGIN 1 */

  /* USER CODE END 1 */

  /* MCU Configuration--------------------------------------------------------*/

  /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  HAL_Init();

  /* USER CODE BEGIN Init */

  /* USER CODE END Init */

  /* Configure the system clock */
  SystemClock_Config();

  /* USER CODE BEGIN SysInit */

  /* USER CODE END SysInit */

  /* Initialize all configured peripherals */
  MX_GPIO_Init();
  MX_ADC2_Init();
  MX_TIM3_Init();
  MX_USART1_UART_Init();
  MX_TIM4_Init();
  /* USER CODE BEGIN 2 */
	LCD_Init();
	LCD_Clear(Black);
	LCD_SetBackColor(Black);
	LCD_SetTextColor(White);
	LCD_DisplayStringLine(Line0, "ok");
	HAL_TIM_Base_Start_IT(&htim3);
	HAL_TIM_Base_Start_IT(&htim4);
	getDualADC(&hadc2);     
	HAL_Delay(2);
	getDualADC(&hadc2);
	weight = adc2_in17_AO1 / 4096.0 * 10.0;
	total = Price[goodsCode] * weight;
	Price[0] = eeprom_read(0) + eeprom_read(1) / 100.0;
	Price[1] = eeprom_read(2) + eeprom_read(3) / 100.0;
	Price[2] = eeprom_read(4) + eeprom_read(5) / 100.0;
	SetN = eeprom_read(6);
	LED_Disp(0x00);
  /* USER CODE END 2 */

  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
    /* USER CODE END WHILE */

    /* USER CODE BEGIN 3 */
		getDualADC(&hadc2);
		weight = adc2_in17_AO1 / 4096.0 * 10.0;
		DisposeKey();
		LCD_Disp();
		if(DisplayMode == DATA)
		{
			LEDpulse = 800;
		}
		else
		{
			LEDpulse = 400;
		}
		LED_Disp(LED);
  }
  /* USER CODE END 3 */
}

/**
  * @brief System Clock Configuration
  * @retval None
  */
void SystemClock_Config(void)
{
  RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

  /** Configure the main internal regulator output voltage
  */
  HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1);

  /** Initializes the RCC Oscillators according to the specified parameters
  * in the RCC_OscInitTypeDef structure.
  */
  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  RCC_OscInitStruct.PLL.PLLM = RCC_PLLM_DIV3;
  RCC_OscInitStruct.PLL.PLLN = 20;
  RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
  RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2;
  RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV2;
  if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  {
    Error_Handler();
  }

  /** Initializes the CPU, AHB and APB buses clocks
  */
  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
                              |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;

  if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  {
    Error_Handler();
  }
}

/* USER CODE BEGIN 4 */
void DisposeKey(void)
{
	if(akey[0].single_flag)
	{
		LCD_Clear(Black);
		if(DisplayMode == DATA)
		{
			DisplayMode = PARA;
		}
		else if(DisplayMode == PARA)
		{
			DisplayMode = DATA;
			//±£´æ
			eeprom_write(0, (unsigned int)(Price[0] * 100) / 100);
			HAL_Delay(10);
			eeprom_write(1, (unsigned int)(Price[0] * 100) % 100);
			HAL_Delay(10);
			eeprom_write(2, (unsigned int)(Price[1] * 100) / 100);
			HAL_Delay(10);
			eeprom_write(3, (unsigned int)(Price[1] * 100) % 100);
			HAL_Delay(10);
			eeprom_write(4, (unsigned int)(Price[2] * 100) / 100);
			HAL_Delay(10);
			eeprom_write(5, (unsigned int)(Price[2] * 100) % 100);
			HAL_Delay(10);
			if(TempPrice[0] != Price[0] || TempPrice[1] != Price[1] || TempPrice[2] != Price[2])
			{
				SetN++;
				TempPrice[0] = Price[0];
				TempPrice[1] = Price[1];
				TempPrice[2] = Price[2];
				eeprom_write(6, SetN);
			}
//			if((int)(TempPrice[0] * 100) != (int)(Price[0] * 100) ||(int)(TempPrice[1] * 100) != (int)(Price[1] * 100) || (int)(TempPrice[2] * 100) != (int)(Price[2] * 100))
//			{
//				SetN++;
//				eeprom_write(6, SetN);
//			}
			//´®¿ÚÊä³ö
			printf("U.W.1:%.2f\n", Price[0]);
			printf("U.W.2:%.2f\n", Price[1]);
			printf("U.W.3:%.2f\n", Price[2]);
		}
		akey[0].single_flag = 0;
	}
	if(akey[1].single_flag)
	{
		if(DisplayMode == PARA)
		{
			if((int)((Price[SettingIndex] + 0.01) * 100) <= 999)
			{
				Price[SettingIndex] += 0.01;
			}
		}
		akey[1].single_flag = 0;
	}
	if(akey[1].long_flag)
	{
		if(DisplayMode == PARA)
		{
			keywait++;
			if(keywait == 2)
			{
				keywait = 0;
				if((int)((Price[SettingIndex] + 0.01) * 100) <= 999)
				{
					Price[SettingIndex] += 0.01;
				}
			}
		}
		akey[1].long_flag = 0;
	}
	if(akey[2].single_flag)
	{
		if(DisplayMode == PARA)
		{
			if((int)((Price[SettingIndex] - 0.01) * 100) >= 0)
			{
				Price[SettingIndex] -= 0.01;
			}
			if(Price[SettingIndex] < -0.000000)
				Price[SettingIndex] = 0;
			}
		akey[2].single_flag = 0;
	}
	if(akey[2].long_flag)
	{
		if(DisplayMode == PARA)
		{
			keywait++;
			if(keywait == 2)
			{
				keywait = 0;
				if((int)((Price[SettingIndex] - 0.01) * 100) >= 0)
				{
					Price[SettingIndex] -= 0.01;
				}
				if(Price[SettingIndex] < -0.000000)
					Price[SettingIndex] = 0;
			}
		}
		akey[2].long_flag = 0;
	}
	if(akey[3].single_flag)
	{
		if(DisplayMode == PARA)
		{			
			SettingIndex++;
			SettingIndex %= 3;
		}
		akey[3].single_flag = 0;
	}
	if(akey[4].single_flag)
	{
		if(DisplayMode == DATA)
		{
			goodsCode = 0;
		}
		akey[4].single_flag = 0;
	}
	if(akey[5].single_flag)
	{
		if(DisplayMode == DATA)
		{
			goodsCode = 1;
		}
		akey[5].single_flag = 0;
	}
	if(akey[6].single_flag)
	{
		if(DisplayMode == DATA)
		{
			goodsCode = 2;
		}
		akey[6].single_flag = 0;
	}
	if(akey[7].single_flag)
	{
		if(DisplayMode == PARA)
		{
			total = weight * Price[goodsCode];
			printf("U.W.%d:%.2f\n", goodsCode, Price[goodsCode]);
			printf("G.W:%.2f\n", weight);
			printf("Total:%.2f\n", total);
		}
		akey[7].single_flag = 0;
	}
}

void LCD_Disp(void)
{
	if(DisplayMode == DATA)
	{
		LCD_DisplayStringLine(Line0, "        DATA");
		sprintf(text, "good sCode:%d", goodsCode + 1);
		LCD_DisplayStringLine(Line2, text);
		sprintf(text, "goodsPrice:%.2f/kg", Price[goodsCode]);
		LCD_DisplayStringLine(Line4, text);
		sprintf(text, "weight    :%.2fkg", weight);
		LCD_DisplayStringLine(Line6, text);
		sprintf(text, "total     :%.1f", total);
		LCD_DisplayStringLine(Line8, text);
	}
	if(DisplayMode == PARA)
	{
		LCD_DisplayStringLine(Line0, "        PARA");
		sprintf(text, "Price1:%.2lf/kg ", Price[0]);
		if(SettingIndex == 0)
			LCD_SetBackColor(Green);
		LCD_DisplayStringLine(Line2, text);
		LCD_SetBackColor(Black);
		sprintf(text, "Price2:%.2lf/kg ", Price[1]);
		if(SettingIndex == 1)
			LCD_SetBackColor(Green);
		LCD_DisplayStringLine(Line4, text);
		LCD_SetBackColor(Black);
		sprintf(text, "Price3:%.2lf/kg ", Price[2]);
		if(SettingIndex == 2)
			LCD_SetBackColor(Green);
		LCD_DisplayStringLine(Line6, text);
		LCD_SetBackColor(Black);
		sprintf(text, "              N:%d", SetN);
		LCD_DisplayStringLine(Line9, text);
	}
}

int fputc(int ch, FILE *f)
{
	HAL_UART_Transmit(&huart1, (unsigned char *)&ch, 1, HAL_MAX_DELAY);
	return ch;
}

/* USER CODE END 4 */

/**
  * @brief  This function is executed in case of error occurrence.
  * @retval None
  */
void Error_Handler(void)
{
  /* USER CODE BEGIN Error_Handler_Debug */
  /* User can add his own implementation to report the HAL error return state */
  __disable_irq();
  while (1)
  {
  }
  /* USER CODE END Error_Handler_Debug */
}

#ifdef  USE_FULL_ASSERT
/**
  * @brief  Reports the name of the source file and the source line number
  *         where the assert_param error has occurred.
  * @param  file: pointer to the source file name
  * @param  line: assert_param error line source number
  * @retval None
  */
void assert_failed(uint8_t *file, uint32_t line)
{
  /* USER CODE BEGIN 6 */
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  /* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */

四、完成效果

蓝桥杯嵌入式第九届国赛试题实现效果

五、总结

本篇文章只是为了存放我的代码,所以看不懂很正常,如果需要代码可以找我私信。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/542348.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

[FlareOn6]Overlong 题解

这个题是不需要逆向加密函数就可以得到flag的&#xff0c;可以直接动态调试得到flag比较快一点 这个冒号后面有东西没有输出 查看主函数的汇编 push 1Ch push offset unk_402008 是调用下面这个函数前的参数传递 call sub_401160 观察这个函数&#xff0c;push …

研发工程师玩转Kubernetes——构建、推送自定义镜像

这几节我们都是使用microk8s学习kubernetes&#xff0c;于是镜像库我们也是使用它的插件——registry。 开启镜像库插件 microk8s enable registry模拟开发环境 我们使用Python作为开发语言来进行本系列的演练。 安装Python sudo apt install python3.11安装Pip3 pip3用于…

chatgpt赋能Python-python3_5怎么安装

Python3.5的安装方法 对于想要学习Python编程的新手来说&#xff0c;Python的版本安装是必须要掌握的技能。在本文中&#xff0c;我们将介绍如何安装Python3.5版本。 介绍 Python是一门简单易学的高级编程语言&#xff0c;其代码易于阅读&#xff0c;容易维护。Python有很多…

JAVA—实验3 继承与多态

一、实验目的 1.掌握类的继承机制 2.掌握抽象类的定义方法 2.熟悉类中成员变量和方法的访问控制 3.熟悉成员方法或构造方法的多态性 二、实验内容 1. Circle类及其子类 【问题描述】 实现类Circle&#xff0c;半径为整型私有数据成员 1&#xff09;构造方法&#xff1a;参数为…

留学文书可以彻底被AI取代吗?留学顾问是否会被AI逼到墙角?

近日&#xff0c;ChatGPT再次“进化”&#xff0c;其最新版本ChatGPT-4又掀高潮。其生产者OpenAI 称&#xff0c;“ChatGPT-4是最先进的系统&#xff0c;能生产更安全和更有用的回复。”和上一代相比&#xff0c;GPT-4拥有了更广的知识面和更强的解决问题能力&#xff0c;在创意…

IC698PSA350 GE Fanuc为RX7i系列生产的电源模块

IC698PSA350 GE Fanuc为RX7i系列生产的电源模块 IC698PSA350是一款 PAC系统 GE Fanuc为RX7i系列生产的电源模块。该模块提供5伏直流电、12伏直流电和-12伏直流电。此外&#xff0c;它还向背板上的模块发送逻辑电平序列信号。该模块插入主机架的插槽0。 IC698PSA350 模块的 在保…

【云计算与虚拟化】第三章 实验三 配置vSphere虚拟网络和iSCSI共享存储

实验3. 配置vSphere虚拟网络和iSCSI共享存储 一、配置vSphere虚拟网络的实验步骤 在 VMware Workstation 中为 ESXi 主机添加两块网卡 2.开启 ESXi 主机&#xff0c;使用 vSphere Client 连接到 ESXi 主机。选中 ESXi 主机 切换到“配置”栏&#xff0c;点击硬件→网络适配器…

计算机中存储器详解

文章目录 一、存储器的分类1. 按存储介质分类2. 按存取方式分类 二、存储器的层次结构三、CPU、缓存、主存、辅存之间的通信关系1. 缓存-主存层次2. 局部性原理3. 主存-辅存层次 一、存储器的分类 1. 按存储介质分类 2. 按存取方式分类 二、存储器的层次结构 在讲存储器的层次…

类和对象【2】默认成员函数

文章目录 引言构造函数定义默认构造函数及相关问题 析构函数拷贝构造定义使用时可能引发的问题 赋值运算符重载运算符重载赋值运算符重载 总结 引言 在上一篇文章中&#xff0c;初步介绍了类和对象&#xff1a;戳我看初识类和对象 不难发现&#xff0c;类类型极大的方便了用户…

【5.15】一、软件测试基础—软件测试概述

目录 1.3 软件测试概述 1.3.1 软件测试简介 1.3.2 软件测试的目的 1.3.3 软件测试的分类 1.3 软件测试概述 软件测试工作能保证软件产品的质量。 1.3.1 软件测试简介 IEEE&#xff1a;软件测试是使用人工或自动手段运行或测定某个系统的过程&#xff0c;其目的在于检验它…

mac读不到内置硬盘为什么 ntfs读取不了硬盘

电脑内置硬盘可用于启动电脑、存储文件、保存注册表信息等多项功能&#xff0c;一旦无法读取&#xff0c;轻则可能导致某个分卷无法使用&#xff0c;严重时会导致整台mac电脑无法开机停留在Logo界面。那么mac读不到内置硬盘为什么&#xff0c;ntfs读取不了硬盘是何原因&#xf…

【5.16】二、黑盒测试方法—等价类划分法

目录 2.1 等价类划分法 2.1.1 等价类划分法概述 2.1.2 实例&#xff1a;三角形问题的等价类划分 2.1.3 实例&#xff1a;余额宝提现的等价类划分 2.1 等价类划分法 等价类划分法是一种常用的黑盒测试方法&#xff0c;主张从大量的数据中选择一部分数据用于测试&#xff0…

微信小程序 nodejs+vue+uniapp学科竞赛作品管理系统java+python

每个系统也都将通过计算机进行整体智能化操作&#xff0c;对于基于微信小程序学科竞赛作品管理系统功能所牵扯的数据都是通过用户进行基于微信小程序学科竞赛作品管理系统等相关的数据信息内容、并且可以进行管理员在线处理首页、个人中心、用户管理、教师管理、辅导员管理、作…

IS420UCSBH1A 用于帮助实现控制器逻辑

通用电气公司的Mark VIe控制器IS420UCSBH1A类似于UCSC控制器&#xff0c;所有相同的一般信息都可以应用于UCSB模型。IS420UCSBH1A型号通常是一种紧凑型独立控制器&#xff0c;用于帮助实现控制器逻辑。 制造商通用电气与…类似马克维UCSC控制器产品类型Mark VIe、EX2100e或LS2…

JUC并发编程(一)

JUC并发编程 文章目录 JUC并发编程一、进程与线程1 进程2 线程3 进程与线程的对比4 并行与并发5 同步与异步 二、Java线程1 创建和运行线程2 查看进程线程的方法3 栈与栈帧4 线程中常见方法5 start()与run()6 sleep()与yield()7 线程优先级8 join()方法9 interrupt()方法10 使用…

软考初级程序员上午五单选(9)

1、在Windows中&#xff0c;用鼠标左键单击某应用程序窗口的最小化按钮后&#xff0c;该应用程序处于______的状态。 A&#xff0e;被强制关闭 B&#xff0e;不确定 C&#xff0e;被暂时挂起 D&#xff0e;在后台继续运行 2、将某ASCII字符采用偶校验编码(7位字符编码1位校验码…

【5.15】一、软件测试基础—软件测试与软件开发

目录 1.4 软件测试与软件开发 1.4.1 软件测试与软件开发的关系 1.4.2 常见的软件测试模型 1.4 软件测试与软件开发 软件开发是生产制造软件产品&#xff0c;软件测试是检验软件产品是否合格&#xff0c;两者密切合作才能保证软件产品的质量。 1.4.1 软件测试与软件开发的关…

CSAPP复习(2)

CH3 虽然x在rdi中 但是在赋值的时候已经把rdi给rax作为返回值了 第二个问是取他的低位 一定要把寄存器那个图搞明白。 画函数执行栈的情况&#xff1a; 常数100存在于代码段&#xff1a; CH8 进程 CH8--2信号 进程作业任务 进程与任务或作业管理教材【优质文档】 - 百度文库…

VMware Workstation 与 Device/Credential Guard 不兼容解决方案(亲测有效)

前言 VMware Workstation是由VMware公司开发的桌面虚拟化软件&#xff0c;它能够在一台物理计算机上模拟多个独立的虚拟计算机环境&#xff0c;每个虚拟计算机环境都可以运行一个独立的操作系统&#xff0c;并具有各自独立的应用程序和文件库&#xff0c;使得运行多个不同操作…

Hive on Spark调优(大数据技术7)

第7章 数据倾斜优化 7.1 数据倾斜说明 数据倾斜问题&#xff0c;通常是指参与计算的数据分布不均&#xff0c;即某个key或者某些key的数据量远超其他key&#xff0c;导致在shuffle阶段&#xff0c;大量相同key的数据被发往一个Reduce&#xff0c;进而导致该Reduce所需的时间远…