2014年OC编程中的#include指令解析

版权申诉
0 下载量 95 浏览量 更新于2024-11-28 收藏 8.55MB RAR 举报
资源摘要信息:"标题中提到的 '2014..OC_#include_' 暗示了文档内容可能与编程中的预处理指令 '#include' 有关,特别是在2014年的背景下。 '#include' 是C、C++以及Objective-C等编程语言中用于包含文件的预处理命令。它使得开发者能够在当前文件中引入其他源文件或头文件的内容,这通常用于引用库函数、数据结构定义、常量等,以增强代码的模块化和重用性。文档的描述部分 'tHIS IS A GOOD THING I NEED' 可能表达了对 '#include' 功能的肯定,暗示了这个特性对编程开发工作的正面影响。标签 '#include' 进一步确认了文档与该主题的紧密联系。而文件名称列表中的 '2014..OC.pdf' 则暗示这可能是一个在2014年创建的关于Objective-C(通常用'.OC'作为文件扩展名)的教程或文档,其中涉及到了 '#include' 指令的使用。这个文档可能详细介绍了 '#include' 的作用、使用方法、最佳实践以及与其他编程语言的对比等知识点。" 知识点: 1. '#include' 预处理指令概述: 在C/C++和Objective-C等编程语言中,'#include' 指令用于在编译之前将指定的文件内容合并到当前文件中。这通常是为了包含库文件或头文件,这样开发者就可以使用这些文件中定义的函数、宏定义、类型定义和其他变量。 2. '#include' 的基本使用方法: '#include' 指令后通常跟随一个文件名,可以是尖括号形式或者双引号形式。 - 使用尖括号(例如 '#include <stdio.h>')时,编译器会查找标准库目录下的文件。 - 使用双引号(例如 '#include "myheader.h"')时,编译器会首先在当前文件所在的目录下查找,如果找不到,再到标准库目录下查找。 3. '#include' 在Objective-C中的应用: 在Objective-C中,'#include' 也用于包含必要的框架或自定义的头文件。由于Objective-C是基于C语言的,因此 '#include' 的使用方法与C语言基本相同。 4. '#include' 的注意事项和最佳实践: - 过度使用 '#include' 可能会导致编译时间的增加,因此应该尽量减少不必要的包含。 - 避免头文件的循环依赖,这可能会引起编译错误。 - 使用前向声明(forward declarations)来代替完整的头文件包含,以减少编译时间。 - 使用项目中的相对路径来引用私有头文件,而不是使用绝对路径。 5. '#include' 与其他语言的对比: 在其他编程语言中,如Python,类似 '#include' 的功能是通过导入(import)语句实现的。每种语言都有自己的方式来引入模块或库。 6. '#include' 在现代编程实践中的演变: 随着编程语言的发展,一些新的语言(如Go)开始使用包管理器来管理依赖关系,它们不再需要像 '#include' 这样的预处理指令。对于C++,引入了模块化特性,允许开发者以更高效的方式组织代码。 7. 文件名称列表 '2014..OC.pdf': 这个文件可能是一个在2014年编写的关于Objective-C的文档或教程,其中包含了对 '#include' 指令的详细讨论。文档可能涵盖了Objective-C语言的特性、编程模式、最佳实践以及与其他编程语言的比较等内容。

这段代码的含义(#include "stm32f10x.h" // Device header #include "stm32f10x_gpio.h" #define PWM_PERIOD 1000 // PWM波形周期,单位us void TIM_Configuration(void); void GPIO_Configuration(void); int main(void) { GPIO_Configuration(); TIM_Configuration(); while (1) { // 不断更新PWM占空比以控制电机转速 TIM_SetCompare2(TIM1, 500); // 设置占空比为50% delay_ms(1000); TIM_SetCompare2(TIM1, 750); // 设置占空比为75% delay_ms(1000); TIM_SetCompare2(TIM1, 250); // 设置占空比为25% delay_ms(1000); } } void GPIO_Configuration(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO, ENABLE); // PA8 -> TIM1_CH1 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); // PB13 -> TIM1_CH2 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB, &GPIO_InitStructure); // PB14 -> TIM1_CH3 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_14; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB, &GPIO_InitStructure); // PB15 -> DRV8313_EN GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB, &GPIO_InitStructure); // PB12 -> DRV8313_FAULT GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB, &GPIO_InitStructure); } void TIM_Configuration(void) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; TIM_BDTRInitTypeDef TIM_BDTRInitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1, ENABLE); TIM_TimeBaseStructure.TIM_Period = PWM_PERIOD - 1; TIM_TimeBaseStructure.TIM_Prescaler = 72 - 1; // 72MHz时钟,分频为72,计数频率为1MHz TIM_TimeBaseStructure.TIM_ClockDivision = 0; TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; TIM_TimeBaseInit(TIM1, &TIM_TimeBaseStructure); // PWM模式1,TIM1_CH2作为PWM输出 TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1; TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; TIM_OCInitStructure.TIM_Pulse = 0; TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; TIM_OC2Init(TIM1, &TIM_OCInitStructure); TIM_OC2PreloadConfig(TIM1, TIM_OCPreload_Enable); // 启用死区时间,设置死区时间为1us TIM_BDTRInitStructure.TIM_DeadTime = 10; TIM_BDTRInitStructure.TIM_AutomaticOutput = TIM_AutomaticOutput_Enable; TIM_BDTRConfig(TIM1, &TIM_BDTRInitStructure); // 启动TIM1 TIM_Cmd(TIM1, ENABLE); // 使能DRV8313芯片 GPIO_SetBits(GPIOB, GPIO_Pin_15); })

2023-05-19 上传

float speed; int main(void) { Breath_Init (); KEY_InitU(); OLED_Init(); Motor_init(); OLED_ShowString(1,1,"Rspeed:"); while (1) { Motor_derection(20); } } #include "stm32f10x.h" // Device header void Breath_Init () { RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE); RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE); GPIO_InitTypeDef GPIO_Initstucture; GPIO_Initstucture.GPIO_Mode=GPIO_Mode_AF_PP;//复用推挽 GPIO_Initstucture.GPIO_Pin=GPIO_Pin_0; GPIO_Initstucture.GPIO_Speed=GPIO_Speed_50MHz; GPIO_Init(GPIOA,&GPIO_Initstucture); TIM_InternalClockConfig(TIM2); TIM_TimeBaseInitTypeDef TIM_TimeBaseInitstucture; TIM_TimeBaseInitstucture.TIM_ClockDivision=TIM_CKD_DIV1; TIM_TimeBaseInitstucture.TIM_CounterMode=TIM_CounterMode_Up; TIM_TimeBaseInitstucture.TIM_Period=100-1;//72M/TIM_Period为频率也是ARR TIM_TimeBaseInitstucture.TIM_Prescaler=72-1;//分频也是PSC TIM_TimeBaseInitstucture.TIM_RepetitionCounter=0;//周期数 TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitstucture); TIM_OCInitTypeDef TIM_OCInitstructure; TIM_OCStructInit(&TIM_OCInitstructure); TIM_OCInitstructure.TIM_OCMode=TIM_OCMode_PWM1; TIM_OCInitstructure.TIM_OCPolarity=TIM_OCPolarity_High; TIM_OCInitstructure.TIM_OutputState=TIM_OutputState_Enable; TIM_OCInitstructure.TIM_Pulse=0;//CCR TIM_OC1Init(TIM2,&TIM_OCInitstructure); TIM_Cmd(TIM2,ENABLE); } void TIM_Compare(uint16_t compare) { TIM_SetCompare1(TIM2,compare); } void KEY_InitD (void)//下拉 { //GPIOB初始化 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE); GPIO_InitTypeDef GPIO_Initstructure; GPIO_Initstructure.GPIO_Mode =GPIO_Mode_IPD ; GPIO_Initstructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1; GPIO_Initstructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB,&GPIO_Initstructure); } void KEY_InitU (void)//上拉 { //GPIOB初始化 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE); GPIO_InitTypeDef GPIO_Initstructure; GPIO_Initstructure.GPIO_Mode =GPIO_Mode_IPU ; GPIO_Initstructure.GPIO_Pin = GPIO_Pin_1; GPIO_Initstructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB,&GPIO_Initstructure); } uint16_t Key_GetNum () { uint8_t KeyNum = 0; if (GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_1) == 0) { Delay_ms(20); while (GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_1) == 0); Delay_ms(20); KeyNum = 1; } } void Motor_init () { RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE); GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4|GPIO_Pin_5; GPIO_Init(GPIOA, &GPIO_InitStructure); } void Motor_derection (float speed) { if(speed>0) { GPIO_SetBits(GPIOA,GPIO_Pin_4);//in1 GPIO_ResetBits(GPIOA,GPIO_Pin_5);//in2 TIM_Compare(speed); } else GPIO_ResetBits(GPIOA,GPIO_Pin_4);//in1 GPIO_SetBits(GPIOA,GPIO_Pin_5);//in2 TIM_Compare(-speed); } 为什么直流电机不转

2023-07-23 上传

帮我转换成HAL库 void TIM2_PWM_Output(float Duty , uint32_t Frequency) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; NVIC_InitTypeDef NVIC_InitStructure; GPIO_InitTypeDef GPIO_InitStructure; RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE); /* GPIOA clock enable */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO ,ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 ; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn; NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1; NVIC_InitStructure.NVIC_IRQChannelSubPriority = 2; NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; NVIC_Init(&NVIC_InitStructure); /* Time base configuration */ TIM_TimeBaseStructure.TIM_Period = (1000000/Frequency)-1; //ARR = (TIM3 counter clock /Frequency)-1 TIM_TimeBaseStructure.TIM_Prescaler = 71; TIM_TimeBaseStructure.TIM_ClockDivision = 0; TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; TIM_TimeBaseInit(TIM2, &TIM_TimeBaseStructure); /* PWM1 Mode configuration: Channel3 */ TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1; TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; TIM_OCInitStructure.TIM_Pulse = ((1000000/Frequency)-1)*Duty; TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; TIM_OC3Init(TIM2, &TIM_OCInitStructure); TIM_OC3PreloadConfig(TIM2, TIM_OCPreload_Enable); TIM_ARRPreloadConfig(TIM2, ENABLE); /* TIM3 enable counter */ TIM_Cmd(TIM2, ENABLE); }

2023-07-15 上传

修改 #include "stm32f10x.h" void TIM4_Configuration(void) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; /* 使能定时器4时钟 / RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM4, ENABLE); / 定时器基本配置 / TIM_TimeBaseStructure.TIM_Period = 20000; // 每个PWM周期为20ms TIM_TimeBaseStructure.TIM_Prescaler = 7200 - 1; // 定时器预分频 TIM_TimeBaseStructure.TIM_ClockDivision = 0; TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; TIM_TimeBaseInit(TIM4, &TIM_TimeBaseStructure); / PWM模式配置 / TIM_OCStructInit(&TIM_OCInitStructure); TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1; TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; TIM_OCInitStructure.TIM_Pulse = 0; TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; / PWM输出通道1配置 / TIM_OC1Init(TIM4, &TIM_OCInitStructure); TIM_OC1PreloadConfig(TIM4, TIM_OCPreload_Enable); / PWM输出通道3配置 / TIM_OC3Init(TIM4, &TIM_OCInitStructure); TIM_OC3PreloadConfig(TIM4, TIM_OCPreload_Enable); / 使能定时器4 / TIM_Cmd(TIM4, ENABLE); } void Servo_Control(uint16_t angle1, uint16_t angle2) { uint16_t ccr1 = 1000 + (angle1 * 1000 / 180); // 将角度转换为对应的PWM占空比 uint16_t ccr3 = 1000 + (angle2 * 1000 / 270); / 设置PWM输出占空比 / TIM_SetCompare1(TIM4, ccr1); TIM_SetCompare3(TIM4, ccr3); } int main(void) { / 初始化定时器4和GPIOB的相应引脚 */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_9; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOB, &GPIO_InitStructure); TIM4_Configuration(); while(1) { Servo_Control(0, 0); // 控制舵机1和舵机2的角度 delay_ms(1000); // 延迟1秒 Servo_Control(90, 135); delay_ms(1000); Servo_Control(180, 270); delay_ms(1000); Servo_Control(90, 135); delay_ms(1000); } }

2023-05-30 上传