M5311-软件开发和各种指令集合。
M531XDM流程_v2.0,M531XHTTPAT指令手册v1.4,M531XMQTT使用指导_v1.3,M531XOneNET参考手册1.6,M5311DM单,M5311_ADP用户使用指南V1.0,M5311_ANDLINK_AT指令手册v1.0,M5311_AT英文说明书
2024/3/23 9:21:26 10.11MB M5311 软件开发 AT指令集
1
从Quartus17.1版开始的重大更新内容:1.增加了Stratix10系列的器件库(Intel真14nm工艺生产,内核速度直接上1GHz,号称全世界最快的FPGA)2.集成了HLS编译器(免费),用于C/C++开发FPGA,主要用于信号处理和/或科学计算类设计应用,和一样用C/C++开发FPGA的OpenCL(免费)有一些区别。
3.把一些Quartus内部集成的功能名字改了,让用户特别是初学者更容易理解这些功能的用处:旧的名字新的名字BlueprintInterfacePlannerQsysPlatformDesignerEyeQEyeViewerJNEyeAdvancedLinkAnalyzerLogicLockLogicLockRegionTimeQuestTimingAnalyzer破解器增加了抗single-eventupset(SEU,可以翻译成单粒子翻转)的license内容,这个对某国禁运的功能支持2009年以后的大部分新器件,对于航空、航天、兵器、核工业、电力、高铁、医疗仪器等等要求高可靠性的产品非常有价值。
当然,这个license一样可以用在老版本的Quartus上,但是必需是用破解器破解过的Quartus,正版license是没有这个功能的,原因你懂得!SEU使用方法请参考器件的英文版数据手册,或者找骏龙科技要各个新系列FPGA的中文版的手册。
和这个SEU功能类似的还有加密功能的license,可以按照美国国防部标准的256位AES加密算法加密大部分新FPGA,至今还无人能解密,需要者自己联系骏龙科技。
本人暂时不加入,因为这些太敏感的禁运东西加入太多了怕出问题。
2024/2/11 4:52:04 222KB Quartus 18.0 下载链接 破解器
1
支持64位的Jpcap.dll用于在64位系统上运行jpcap抓包服务。
如果用32位的Dll,将会出现如下错误:Exceptioninthread"main"java.lang.UnsatisfiedLinkError:C:\ProgramFiles\Java\jre7\bin\Jpcap.dll:Can'tloadIA32-bit.dllonaAMD64-bitplatform需要将dll文件拷到%JAVA_HOME%\jre\bin\目录下。
因为Jpcap是调用的wincap,所以必须将动态库放入jre/bin下。
2024/1/13 21:01:18 35KB 64位 Jpcap
1
leetcodepython题解,包含大量leetcode题目的解法,源代码,python实现CourseSchedule21.4.4Numberofislands14.5HeapsMergeKSortedLinkedLists1.5.1KthLargestElementinanArray1.5.2Arrays1.62sum‖l1.62SumⅢ1.6.2ContainsDuplicate1.6.3RotateArray1.643SumSmaller1.653Sumclosest1.663Sum1.6.7TwoSum1.68PlusOne1.6.9BestTimetoBuyandSellStock1.6.10Shortestworddistance1.6.11Movezeroes1.6.12ContainsDuplicate1.6.13MajorityElement1.6.14RemoveDuplicatesfromSortedArray1.6.15NestedListWeightSum1.6.16NestedListWeightedSumIl1.6.17Removeelement1.6.18IntersectionofTwoArraysll1.6.19MergeSortedArrays1.6.20ReverseVowelsofaString1.6.21IntersectionofTwoArrays1.6.22Containerwithmostwater1.6.23ProductofArrayExceptSelf1.6.24TrappingRainWater1.6.25MaximumSubarray1.6.26BestTimetoBuyandSellStockIl1.6.27FindMinimuminRotatedSortedArray1.6.28Pascal'sTriangle1.6.29Pascal'sTriangle‖l1.6.30SummaryRanges1.6.31MissingNumber1.6.32StringsValidAnagram1.7.1Validpalindrome1.7.2WordPattern1.7.3ValidParentheses1.7.4IsomorphicStrings1.7.5ReverseString1.7.6BitManipulationSumofTwoIntegers18.1SingleNumber18.2Singlenumber‖18.3SingleNumberIll1.8.4Maths1.9ReverseInteger1.9.1Palindromenumber19.2Pow(x,n)19.3Subsets1.94Subsets‖195FractiontoRecurringDecimal19.6Excelsheetcolumnnumber19.7Excelsheetcolumntitle19.8FactorialTrailingzeros199HappyNumber1.9.10Countprimes1.9.11Plusone19.12DivideTwoIntegers19.13MultiplyStrings1.9.14MaxPointsonaline1.9.15ProductofArrayExceptSelf19.16Powerofthree19.17IntegerBreak1.9.18Poweroffour9.19Adddigits1.9.20UglyNumber1.9.21glyNumberll1.9.22SuperUglyNumber19.23FindKpairswithsmallestsums1.924SelfCrossing1.9.25Paintfence1.9.26Bulbswitcher19.27Nimgame1.9.28Matrix1.10RotateImage1.10.1SetmatrixZeroes1.10.2Searcha2DMatrix1.10.3Searcha2dMatrixl1.10.4SpiralMatrix1.10.5SpiralMatrix‖l1.10.6DesignLRUCache1.11.1IntroductionMyLeetcodeSolutionsinPythonThisbookwillcontainmysolutionsinPythontotheleetcodeproblems.Currently,willjusttrytoposttheacceptedsolutions.TheplanistoeventuallyincludedetailedexplanationsofeachandeverysolutionamdoingthisjustforfunLinkedListCycleLinkedListCvcleGivenalinkedlist,determineifithasacycleinitFollowup:Canyousolveitwithoutusingextraspace?Url:https://leetcode.com/problems/linked-list-cycle/Definitionforsingly-linkedlistclassListNodeobject)###definit(self,x)self,val=xself,nextNoneclassSolution(object):defhasCycle(self,head)IItypehead:ListNodertype:boolIIIIifhead=nonereturnfalseelsefastheadslow=headWhilefastnoneandfast.nextnonesloW=slownextfastfast.nextnextiffast=slow:breaki千fastNoneorfast.next=nonereturnFalseeliffast=slowreturntruereturnfalseLinkedListCycleReverseLinkedListReverseLinkedlistReverseasinglylinkedlistUrl:https://eetcode.com/problems/reverse-linked-list/definitionforsingly-linkedlist#tclassListNode(object):##def-init(self,x)self.∨al=xselfnextnoneclassSolution(object):defreverseList(self,head)11IIl1typehead:ListNodertype:ListNodeifhead=nonereturnnoneelifhead!=noneandheadnext=nonereturnheadelsetempNonenextnodenoneWhileheadNonenextnodeheadnexthead.nexttemptemp=headheadnextnodereturntempDeletenodeinalinkedlistDeletenodeinalinkedlistWriteafunctiontodeleteanode(exceptthetail)inasinglylinkedlist,givenonlyaccesstothatnodeSupposedthelinkedlistis1->2->3->4andyouaregiventhethirdnodewithvalue3,thelinkedlistshouldbecome1->2->4aftercallingyourfunctionUrl:https://eetcode.com/problems/delete-node-in-a-linked-list/Definitionforsingly-linkedlistclassListNode(object):#def-init(self,x)#self,valxself,nextNoneclasssolution(object):defdeleteNode(self,node):IIlIItypenode:ListNodertype:voidDonotreturnanythingmodifynodein-placeinsteadI111fnode=nonepasse⊥se:nextnodenode.nextnodevalnextnodevalnode.nextnextnode,next
2023/11/8 17:06:47 574KB leetcode python题解
1
boost库中文帮助文档.1.Boost.AccumulatorsPreface序言User'sGuide用户指南Acknowledgements鸣谢Reference参考手册2.Boost.AnyIntroduction简介Examples例子Reference参考手册Acknowledgements鸣谢3.Boost.ArrayIntroduction简介Reference参考手册DesignRationale设计原理Formoreinformation...更多信息...Acknowledgements鸣谢4.Boost.Concept_CheckConceptreference概念参考5.Boost.Date_TimeConceptual概念说明GeneralUsageExamples常见用例Gregorian格里历PosixTimePosix时间LocalTime本地时间DateTimeInput/Output日期时间的输入/输出Serialization序列化Details细节Examples例子LibraryReference库参考手册6.Boost.ForeachIntroduction简介Extensibility可扩展性Portability可移植性Pitfalls缺陷HistoryandAcknowledgements历史与鸣谢7.Boost.FunctionIntroduction简介History&CompatibilityNotes历史与兼容性说明Tutorial教程Reference参考手册FrequentlyAskedQuestions常见问题MiscellaneousNotes杂项说明Testsuite测试套件8.Boost.Functional/HashIntroduction简介Tutorial教程Extendingboost::hashforacustomdatatype为定制的数据类型扩展boost::hashCombininghashvalues组合散列值Portability可移植性DisablingTheExtensions禁止扩展ChangeLog变更历史Reference参考手册Links链接Acknowledgements鸣谢9.Boost.InterprocessIntroduction简介QuickGuidefortheImpatient快速入门Somebasicexplanations基本说明Sharingmemorybetweenprocesses进程间的共享内存MappingAddressIndependentPointer:offset_ptr映射地址无关的指针:offset_ptrSynchronizationmechanisms同步机制ManagedMemorySegments管理内存段Allocators,containersandmemoryallocationalgorithms分配器、容器和内存分配算法Directiostreamformatting:vectorstreamandbufferstream直接iostream格式化:vectorstream和bufferstreamOwnershipsmartpointers智能指针的所有权Architectureandinternals体系结构与内部细节CustomizingBoost.Interprocess定制Boost.InterprocessAcknowledgements,notesandlinks鸣谢、说明与链接Boost.InterprocessReference参考手册10.Boost.IntrusiveIntroduction简介Intrusiveandnon-intrusivecontainers介入式与非介入式容器HowtouseBoost.Intrusive如何使用Boost.IntrusiveWhentouse?何时使用?Conceptsummary概念摘要Pre
2023/9/4 22:14:58 20.96MB boost api
1
Physical-layersecurityanalysisofPSKquantum-noiserandomizedcipherinopticallyamplifiedlinks
2023/7/15 1:01:41 1.53MB 研究论文
1
[凶猛推选,文档未多少,很快就能够看完,看完了,就会使用play了]目录MVC使用法度圭表标准模子 -7-app/controllers -8-app/models -8-app/views -8-恳求人命周期 -8-尺度使用法度圭表标准方案layout -9-app目录 -9-public目录 -10-conf目录 -10-lib目录 -11-开拓人命周期 -11-毗邻到java调试器 -12-类增强Enhancement -13-02.HTTP路由 -13-对于REST -14-routes文件语法 -14-HTTP方式 -15-URI范示Pattern -15-Java挪用定义 -17-把404当成action来用 -17-指派动态参数 -17-变量以及剧本 -18-路由优先级 -18-效率器动态资源 -18-staticDir:mapping -18-staticFile:mapping -19-URL编码 -19-反转路由:用于天生某些URL -19-配置内容作风(CSS) -20-HTTP内容商议negotiation -21-从httpheaders末了配置内容尺度 -21-定制格式 -22-03.抑制器 -23-抑制器概览 -23-患上到http参数 -24-使用paramsmap -25-还能够从action方式签名实现转换 -25-低级HTTPJava绑定 -26-约莫尺度 -26-Date尺度 -26-Calendar日历 -27-File -27-反对于尺度的数组或者群集 -28-POJO货物绑定 -29-JPA货物绑定 -30-定制绑定 -30-@play.data.binding.As -30-@play.data.binding.NoBinding -31-play.data.binding.TypeBinder -31-@play.data.binding.Global -32-下场尺度 -32-返回一些文本尺度的内容 -33-返回一个JSON字符串 -33-返回一个XML字符串 -34-返回二进制内容 -34-作为附件下载文件 -34-实施一个模板 -35-跳转到其余URL -36-Action链 -36-定制web编码 -37-拦阻器 -38-@Before -38-@After -39-@Catch -40-@Finally -41-抑制器络续 -42-使用@With评释削减更多的拦阻器 -42-BecauseJavadoesnotallowmultipleinheritance,itcanbeverylimitingtorelyontheControllerhierarchytoapplyinterceptors.Butyoucandefinesomeinterceptorsinatotallydifferentclass,andlinkthemwithanycontrollerusingthe@Withannotation.由于java不答应多络续,经由抑制器络续特色来使用拦阻器就受到极大的限度。
然则咱们能够在一个残缺不合的类里定义一些拦阻器,而后在任何抑制器里使用@With评释来链接他们。
-42-Session以及Flash传染域 -42-04.模板引擎 -43-模板语法 -43-Expressions:${…} -44-Templatedecorators:#{extends/}and#{doLayout/} -44-Tags:#{tagName/} -45-Actions:@{…}or@@{…} -46-Messages:&{…} -46-Co妹妹ent:*{…}* -46-Scripts:%{…}% -46-Templateinheritance络续 -47-定制模板标签 -48-检索tag参数 -48-挪用标签体 -48-格式化特定标签 -49-定制java标签 -49-标签命名空间 -50-在模板里的Java货物扩展 -51-建树定制扩展 -
2023/5/7 14:37:41 2.57MB play框架 play framework
1
DlinkDir-822中文简体言语包,真正的简体中文,由于这款路由器设计人员脑子被门挤了,设计的言语不能选,而且一旦点击删除不可恢复,更要命的是跟本连确认的过程都没有。
被坑过的人都很清楚。
2023/1/16 9:45:01 183KB Dlink Dir-822 中文简体 语言包
1
hadoop2.7.1对应的hadoop.dll,winutils.exe等。
亲测,可用!针对问题:hadoop2.7.1运行Wordcount错误atjava.lang.ProcessBuilder.start(ProcessBuilder.java:1012)Exceptioninthread"main"java.lang.UnsatisfiedLinkError处理办法:1:将文件解压到hadoop的bin目录下2:将hadoop.dll复制到C:\Window\System32下3:添加环境变量HADOOP_HOME,指向hadoop目录4:将%HADOOP_HOME%\bin加入到path里面5:重启myeclipse或者eclipse
2021/8/20 6:43:56 781KB hadoop2.7.1 hadoop.dll winutils.exe Wordcount
1
共 14 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡