From 023c9515e432b94ec4a71b563729f03cc3e1d381 Mon Sep 17 00:00:00 2001 From: barthess Date: Tue, 14 Aug 2012 18:10:06 +0000 Subject: Added simple script for massive file changes. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4571 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- tools/edit_aid/rebalance_prio.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 tools/edit_aid/rebalance_prio.sh (limited to 'tools/edit_aid/rebalance_prio.sh') diff --git a/tools/edit_aid/rebalance_prio.sh b/tools/edit_aid/rebalance_prio.sh new file mode 100755 index 000000000..c831684b8 --- /dev/null +++ b/tools/edit_aid/rebalance_prio.sh @@ -0,0 +1,13 @@ +#!/bin/bash +FILES=`find -name 'mcuconf.h'` +for i in $FILES +do + cp $i ${i}_backup + cat ${i}_backup | \ + sed -e 's/\(#define STM32_I2C_I2C[0-9]_IRQ_PRIORITY\)\([ ]*\)\([0-9]*\)/\1\25/' | \ + sed -e 's/\(#define STM32_I2C_I2C[0-9]_DMA_PRIORITY\)\([ ]*\)\([0-9]*\)/\1\23/' | \ + sed -e 's/\(#define STM32_ADC_IRQ_PRIORITY\)\([ ]*\)\([0-9]*\)/\1\26/' | \ + sed -e 's/\(#define STM32_ADC_ADC[0-9]_IRQ_PRIORITY\)\([ ]*\)\([0-9]*\)/\1\26/' | \ + sed -e 's/\(#define STM32_ADC_ADC[0-9]_DMA_IRQ_PRIORITY\)\([ ]*\)\([0-9]*\)/\1\26/' > $i + rm ${i}_backup +done -- cgit v1.2.3