当前位置:   article > 正文

不可错过的嵌入式C语言工具代码合集

不可错过的嵌入式C语言工具代码合集
关注、星标公众号,直达精彩内容

来源 | 知乎-晓亮Albert

嵌入式开发中常用的C语言工具代码确实很重要。以下是一些利剑级别的C语言工具代码示例,以及它们的简要讲解。

1、循环队列(Circular Buffer)

  1. typedef struct {
  2. int buffer[SIZE];
  3. int head;
  4. int tail;
  5. int count;
  6. } CircularBuffer;
  7. void push(CircularBuffer *cb, int data) {
  8. if (cb->count < SIZE) {
  9. cb->buffer[cb->head] = data;
  10. cb->head = (cb->head + 1) % SIZE;
  11. cb->count++;
  12. }
  13. }
  14. int pop(CircularBuffer *cb) {
  15. if (cb->count > 0) {
  16. int data = cb->buffer[cb->tail];
  17. cb->tail = (cb->tail + 1) % SIZE;
  18. cb->count--;
  19. return data;
  20. }
  21. return -1; // Buffer is empty
  22. }

循环队列是一种高效的数据结构,适用于缓冲区和数据流应用,例如串口通信接收缓冲。

2、断言(Assertion)

  1. #define assert(expression) ((void)0)
  2. #ifndef NDEBUG
  3. #undef assert
  4. #define assert(expression) ((expression) ? (void)0 : assert_failed(__FILE__, __LINE__))
  5. #endif
  6. void assert_failed(const char *file, int line) {
  7. printf("Assertion failed at %s:%d\n", file, line);
  8. // Additional error handling or logging can be added here
  9. }

断言用于在程序中检查特定条件是否满足,如果条件为假,会触发断言失败,并输出相关信息

3、位域反转(Bit Reversal)

  1. unsigned int reverse_bits(unsigned int num) {
  2. unsigned int numOfBits = sizeof(num) * 8;
  3. unsigned int reverseNum = 0;
  4. for (unsigned int i = 0; i < numOfBits; i++) {
  5. if (num & (1 << i)) {
  6. reverseNum |= (1 << ((numOfBits - 1) - i));
  7. }
  8. }
  9. return reverseNum;
  10. }

该函数将给定的无符号整数的位进行反转,可以用于某些嵌入式系统中的位级操作需求。

4、固定点数运算(Fixed-Poin Arithmetic)

  1. typedef int16_t fixed_t;
  2. #define FIXED_SHIFT 8
  3. #define FLOAT_TO_FIXED(f) ((fixed_t)((f) * (1 << FIXED_SHIFT)))
  4. #define FIXED_TO_FLOAT(f) ((float)(f) / (1 << FIXED_SHIFT))
  5. fixed_t fixed_multiply(fixed_t a, fixed_t b) {
  6. return (fixed_t)(((int32_t)a * (int32_t)b) >> FIXED_SHIFT);
  7. }

在某些嵌入式系统中,浮点运算会较慢或不被支持。因此,使用固定点数运算可以提供一种有效的浮点数近似解决方案。

5、字节序转换(Endianness Conversion)

uint16_t swap_bytes(uint16_t value) { return (value >> 8) | (value << 8); }

用于在大端(Big-Endian)和小端(Little-Endian)字节序之间进行转换的函数。

6、位掩码(Bit Masks)

#define BIT_MASK(bit) (1 << (bit))

用于创建一个只有指定位被置位的位掩码,可用于位操作。

7、计数器计数(Timer Counting)

  1. #include <avr/io.h>
  2. void setup_timer() {
  3. // Configure timer settings
  4. }
  5. uint16_t read_timer() {
  6. return TCNT1;
  7. }

在AVR嵌入式系统中,使用计时器(Timer)来实现时间测量和定时任务。

8、二进制查找(Binary Search)

  1. int binary_search(int arr[], int size, int target) {
  2. int left = 0, right = size - 1;
  3. while (left <= right) {
  4. int mid = left + (right - left) / 2;
  5. if (arr[mid] == target) {
  6. return mid;
  7. } else if (arr[mid] < target) {
  8. left = mid + 1;
  9. } else {
  10. right = mid - 1;
  11. }
  12. }
  13. return -1; // Not found
  14. }

用于在已排序的数组中执行二进制查找的函数。

9、位集合(Bitset)

  1. #include <stdint.h>
  2. typedef struct {
  3. uint32_t bits;
  4. } Bitset;
  5. void set_bit(Bitset *bitset, int bit) {
  6. bitset->bits |= (1U << bit);
  7. }
  8. int get_bit(Bitset *bitset, int bit) {
  9. return (bitset->bits >> bit) & 1U;
  10. }

实现简单的位集合数据结构,用于管理一组位的状态。

这些代码示例代表了嵌入式开发中常用的一些利剑级别的C语言工具代码。它们在嵌入式系统开发中具有广泛的应用,有助于优化性能、节省资源并提高代码的可维护性。

来源地址:

https://zhuanlan.zhihu.com/p/653484840

版权声明:本文来源网络,免费传达知识,版权归原作者所有。如涉及作品版权问题,请联系我进行删除。

‧‧‧‧‧‧‧‧‧‧‧‧‧‧‧‧  END  ‧‧‧‧‧‧‧‧‧‧‧‧‧‧‧

关注我的微信公众号,回复“加群”按规则加入技术交流群。
点击“阅读原文”查看更多分享,欢迎点分享、收藏、点赞、在看。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/331399
推荐阅读
相关标签
  

闽ICP备14008679号