04 2017 档案
摘要:IEEE_802.15.4 wikipedia 802.15.4-2003.pdf 802.15.4-2006.pdf 802.15.4-2011.pdf
阅读全文
摘要:项目中需要通过一块FPGA控制板通过两个AS接口对另外两个FPGA进行在线升级。 FPGA控制板程序中运行的是基于nios2处理器的程序。 nios2的bsp启动过程中会对3个EPCS控制器配置: EPCS_FLASH_CONTROLLER_0 控制器是控制板本身的EPCS控制器 EPCS_RSU_
阅读全文
摘要:#include "stdafx.h" void insertSort(int* array,int len ) { // [0,i-1] [i,n-1] // 直接插入排序: [0,i-1]是已排序的序列 [i,n-1]是没有排序的序列 // 算法的核心思想:在已排序序列的[0,i-1]找到合适的位置插入当前要排序的元素i。 // 分两种情形: ...
阅读全文
摘要:// SelectSort.cpp : Defines the entry point for the console application. // #include "stdafx.h" int sort(int* p,int len ) { int index,temp,i,j; if( p == NULL || len <= 1 ) { r...
阅读全文
摘要:int bubbleSort1(int* array,int len ) { int i ,j,temp; i = j = temp = 0; for( i = 0; i i;j-- ) { if( array[j-1] > array[j] ) { temp = ...
阅读全文
摘要:// GNRMC_Analysis.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <string.h>#include <stdlib.h> #include <std
阅读全文
摘要:Efficient Memory Safety for TinyOS: http://www.cs.utah.edu/~coop/me/pubs/sensys07.htm Safe TinyOS 原文:http://tinyos.stanford.edu/tinyos-wiki/index.php/
阅读全文
摘要:CC2538 Bootloader Backdoor http://www.ti.com/lit/ug/swru333a/swru333a.pdf http://files.cnblogs.com/files/tinyos/CC2538_ROM.pdf gnu-ld链接脚本浅析 http://fil
阅读全文
浙公网安备 33010602011771号