क्या कारण है कि मेरी PIC16 मल्टीटास्किंग RTOS कर्नेल काम नहीं करती है?


11

मैं PIC x16 माइक्रोकंट्रोलर के लिए एक अर्ध-पूर्व-खाली (सहकारी) RTOS बनाने की कोशिश कर रहा हूं। अपने पिछले प्रश्न में, मैंने सीखा है कि इन कोर में हार्डवेयर स्टैक पॉइंटर तक पहुंच संभव नहीं है। मैंने PIClist में इस पृष्ठ को देखा है , और यही मैं C का उपयोग करके लागू करने की कोशिश कर रहा हूं।

मेरा कंपाइलर माइक्रोचिप XC8 है और वर्तमान में मैं एक PIC16F616 पर काम कर रहा हूँ, जिसमें 4MHz आंतरिक आरसी थरथरानवाला विन्यास बिट्स में चुना गया है।

मैंने सीखा है कि मैं अपने कंपाइलर की हेडर फ़ाइल को देखते हुए, पीसीएलएटीएच और सी के साथ पीसीएल रजिस्टर का उपयोग कर सकता हूं। इसलिए, मैंने एक सरल कार्य स्विचर लागू करने का प्रयास किया।

यह डिबगर में वांछित के रूप में काम करता है यदि मैं पुनरारंभ, रीसेट, और कर्सर पर पीसी सेट करने के बाद डिबगर को रोक देता हूं जब कर्सर पहली पंक्ति ( TRISA=0;) पर नहीं है, लेकिन किसी अन्य पंक्ति (उदाहरण के लिए ANSEL=0;) पर है। डीबगर की पहली शुरुआत में मुझे ये संदेश मिलते हैं Debugger Console:

Launching
Programming target
User program running
No source code lines were found at current PC 0x204

संपादित करें: मुझे नहीं पता कि इससे क्या काम हुआ, लेकिन डिबगर अब पूरी तरह से काम करता है। इसलिए, उपरोक्त आउटपुट और पैराग्राफ को छोड़ दें।

संपादित करें: मुख्य परिभाषा को इस तरह बदलना कोड को काम से नीचे बनाता है। यह कार्यक्रम के पते पर मुख्य कार्य शुरू करता है 0x0099। मुझे नहीं पता कि इसका क्या कारण है। यह वास्तविक समाधान नहीं है। मैं अब अनुमान लगा रहा हूं कि संकलक विशिष्ट त्रुटि है।

void main(void) @ 0x0099
{

यहाँ मेरा C कोड है:

/* 
 * File:   main.c
 * Author: abdullah
 *
 * Created on 10 Haziran 2012 Pazar, 14:43
 */
#include <xc.h> // Include the header file needed by the compiler
__CONFIG(FOSC_INTOSCIO & WDTE_OFF & PWRTE_ON & MCLRE_OFF & CP_OFF & IOSCFS_4MHZ & BOREN_ON);
/*
 * INTOSCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN
 * WDT disabled and can be enabled by SWDTEN bit of the WDTCON register
 * PWRT enabled
 * MCLR pin function is digital input, MCLR internally tied to VDD
 * Program memory code protection is disabled
 * Internal Oscillator Frequency Select bit : 4MHz
 * Brown-out Reset Selection bits : BOR enabled
 */

/*
 * OS_initializeTask(); definition will copy the PCLATH register to the task's PCLATH holder, which is held in taskx.pch
 * This will help us hold the PCLATH at the point we yield.
 * After that, it will copy the (PCL register + 8) to current task's PCL holder which is held in taskx.pcl.
 * 8 is added to PCL because this line plus the "return" takes 8 instructions.
 * We will set the PCL after these instructions, because
 * we want to be in the point after OS_initializeTask when we come back to this task.
 * After all, the function returns without doing anything more. This will initialize the task's PCLATH and PCL.
 */
#define OS_initializeTask(); currentTask->pch = PCLATH;\
                             currentTask->pcl = PCL + 8;\
                             asm("return");

/*
 * OS_yield(); definition will do the same stuff that OS_initializeTask(); definition do, however
 * it will return to "taskswitcher" label, which is the start of OS_runTasks(); definition.
 */

#define OS_yield();          currentTask->pch = PCLATH;\
                             currentTask->pcl = PCL + 8;\
                             asm("goto _taskswitcher");

/*
 * OS_runTasks(); definition will set the "taskswitcher" label. After that it will change the
 * current task to the next task, by pointing the next item in the linked list of "TCB"s.
 * After that, it will change the PCLATH and PCL registers with the current task's. That will
 * make the program continue the next task from the place it left last time.
 */

#define OS_runTasks();       asm("_taskswitcher");\
                             currentTask = currentTask -> next;\
                             PCLATH = currentTask->pch;\
                             PCL = currentTask->pcl;

typedef struct _TCB // Create task control block and type define it as "TCB"
{
    unsigned char pch; // pch register will hold the PCLATH value of the task after the last yield.
    unsigned char pcl; // pcl register will hold the PCL value of the task after the last yield.
    struct _TCB* next; // This pointer points to the next task. We are creating a linked list.
} TCB;

TCB* currentTask; // This TCB pointer will point to the current task's TCB.

TCB task1; // Define the TCB for task1.
TCB task2; // Define the TCB for task2.

void fTask1(void); // Prototype the function for task1.
void fTask2(void); // Prototype the function for task2.

void main(void)
{
    TRISA = 0; // Set all of the PORTA pins as outputs.
    ANSEL = 0; // Set all of the analog input pins as digital i/o.
    PORTA = 0; // Clear PORTA bits.

    currentTask = &task1; // We will point the currentTask pointer to point the first task.

    task1.next = &task2; // We will create a ringed linked list as follows:
    task2.next = &task1; // task1 -> task2 -> task1 -> task2 ....

    /*
     * Before running the tasks, we should initialize the PCL and PCLATH registers for the tasks.
     * In order to do this, we could have looked up the absolute address with a function pointer.
     * However, it seems like this is not possible with this compiler (or all the x16 PICs?)
     * What this compiler creates is a table of the addresses of the functions and a bunch of GOTOs.
     * This will not let us get the absolute address of the function by doing something like:
     * "currentTask->pcl=low(functionpointer);"
     */
    fTask1(); // Run task1 so that we get the address of it and initialize pch and pcl registers.
    currentTask = currentTask -> next; // Point the currentTask pointer to the next pointer which
    fTask2(); // is task2. And run task2 so that we get the correct pch and pcl.

    OS_runTasks(); // Task switcher. See the comments in the definitions above.
}

void fTask1(void)
{
    OS_initializeTask(); // Initialize the task
    while (1)
    {
        RA0 = ~RA0; // Toggle PORTA.0
        OS_yield(); // Yield
        RA0 = ~RA0; // Toggle PORTA.0
    }
}

void fTask2(void)
{
    OS_initializeTask(); // Initialize the task
    while (1)
    {
        RA1 = ~RA1; // Toggle PORTA.1
        OS_yield(); // Yield
        RA1 = ~RA1; // Toggle PORTA.1
    }
}

और यहाँ disassembly लिस्टिंग फ़ाइल है जो मेरे कंपाइलर ने बनाई है। पर शुरू होता है line 74

मैंने वास्तविक चिप को प्रोग्राम किया है, और पोर्टा पर कोई बदलाव नहीं किया है; यह काम नहीं करता है।

क्या कारण है कि मेरा कार्यक्रम काम नहीं करता है?

जवाबों:


10

आप जो करने की कोशिश कर रहे हैं वह मुश्किल है, लेकिन बहुत शैक्षिक (यदि आप बहुत प्रयास करने के लिए तैयार हैं)।

सबसे पहले, आपको पता होना चाहिए कि इस तरह के पीसी-ओनली (पीसी + एसपी के विपरीत) कार्य स्विचिंग (जो केवल एक चीज आप 12 या 14-बिट पीआईसी कोर पर कर सकते हैं) केवल तभी काम करेगी जब सभी उपज ( ) किसी कार्य में कथन एक ही फ़न में होते हैं: वे एक फ़ंक्शन में नहीं हो सकते हैं, और कंपाइलर को फ़ंक्शन संरचना के साथ गड़बड़ नहीं करना चाहिए (जैसा कि अनुकूलन कर सकता है)।

आगे:

currentTask->pch = PCLATH;\
currentTask->pcl = PCL + 8;\
asm("goto _taskswitcher");
  • आपको लगता है कि PCLATH प्रोग्राम काउंटर के ऊपरी बिट्स हैं, क्योंकि PCL कम बिट्स है। यह मामला नहीं है। जब आप PCL को लिखते हैं तो PCLATH बिट्स को PC में लिखा जाता है, लेकिन PCLATH को लिखे गए ऊपरी PC बिट कभी भी (अव्यक्त) नहीं होते हैं। डेटाशीट के संबंधित अनुभाग को फिर से पढ़ें।
  • यहां तक ​​कि अगर PCLATH पीसी के ऊपरी बिट्स थे, तो यह आपको परेशानी में डाल देगा जब गोटो के बाद का निर्देश पहले निर्देश के समान 256-निर्देश 'पेज' पर नहीं है।
  • सादा गोटो तब काम नहीं करेगा जब _taskswitcher वर्तमान PCLATH पेज में नहीं है, आपको LGOTO या समकक्ष की आवश्यकता होगी।

आपकी PCLATH समस्या का समाधान गोटो के बाद एक लेबल घोषित करना है, और उस लेबल के निचले और ऊपरी बिट्स को अपने pch और pcl स्थानों पर लिखना है। लेकिन मुझे यकीन नहीं है कि आप इनलाइन असेंबली में 'स्थानीय' लेबल की घोषणा कर सकते हैं। आपको यकीन है कि सादे एमपीएएसएम (ओलिन मुस्कुराएगा) में कर सकते हैं।

अंत में, इस तरह के संदर्भ पर स्विच करने से आपको सभी संदर्भों को सहेजना और पुनर्स्थापित करना होगा जो संकलक पर निर्भर हो सकता है, जिसमें शामिल हो सकता है

  • अप्रत्यक्ष पंजीकरण
  • स्थिति के झंडे
  • खरोंच स्मृति स्थानों
  • स्थानीय चर जो मेमोरी में ओवरलैप हो सकते हैं क्योंकि कंपाइलर को यह महसूस नहीं होता है कि आपके कार्य स्वतंत्र होने चाहिए
  • अन्य चीजें जिनकी मैं अभी कल्पना नहीं कर सकता, लेकिन संकलक लेखक संकलक के अगले संस्करण में उपयोग कर सकता है (वे बहुत कल्पनाशील होते हैं)

PIC आर्किटेक्चर इस संबंध में अधिक समस्याग्रस्त है क्योंकि बहुत सारे संसाधनों को मेमोरी मैप पर पूरा किया जाता है, जहां अधिक पारंपरिक आर्किटेक्चर उन्हें रजिस्टरों या स्टैक पर रखते हैं। परिणामस्वरूप, PIC कंपाइलर अक्सर रीएन्स्ट्रेंट कोड उत्पन्न नहीं करते हैं, जो कि आपको निश्चित रूप से उन चीजों को करने की ज़रूरत है जो (फिर से, ओलिन मुस्कुराहट का प्रसार करेगी और साथ इकट्ठा करेगी।)

यदि आप एक कार्य स्विचर के लेखन की खुशी के लिए इसमें हैं, तो मैं सुझाव देता हूं कि आप एक सीपीयू को स्वाइप करें जिसमें एक अधिक पारंपरिक संगठन है, जैसे एआरएम या कॉर्टेक्स। यदि आप PICs की एक ठोस प्लेट में अपने पैरों के साथ फंसे हुए हैं, तो मौजूदा PIC स्विचर (उदाहरण के लिए salvo / pumkin?) का अध्ययन करें।


शानदार जानकारी के लिए धन्यवाद! मैं एक सहकारी कार्य स्विचर बनाने पर दृढ़ हूं। XC8 और PIC इस तरफ मेरी तरफ नहीं हैं, मुझे इस बारे में पता है :) हाँ, जैसा कि आप देख सकते हैं, लेबल बनाना संभव है जैसा कि मैंने इस प्रश्न के अपने उत्तर में किया था ।
अब्दुल्लाह कहरामन

इसके अलावा, मेरी किस्मत में, PIC16F616 के लिए प्रोग्राम मेमोरी का कोई पेजिंग नहीं है, जिस पर मैं काम कर रहा हूं, यह इस बिंदु पर एक बड़ा फायदा है, है ना?
अब्दुल्लाह कहरामन

क्या आप अधिक बता सकते हैं कि स्थानीय चर स्मृति में कैसे ओवरलैप होंगे, और "स्क्रैच मेमोरी लोकेशन" भी?
अब्दुल्लाह कहरामन

यदि आप अपने आप को 2K कोड या उससे कम के चिप्स के लिए प्रतिबंधित करते हैं, तो आप वास्तव में lgoto के बारे में भूल सकते हैं, लेकिन 256-निर्देश 'पृष्ठों' के बारे में नहीं। स्क्रैच: एक संकलक कुछ भी मान सकता है कि यह स्मृति में रहता है जब तक कि यह 'अस्थिर' न हो। इसलिए यह कुछ स्थानों पर आंशिक गणना कर सकता है जिन्हें विभिन्न कार्यों द्वारा साझा किया जा सकता है । Ovelap: यदि मुख्य () दोनों f () और g () और (कोई अन्य कॉल नहीं हैं) कॉल करते हैं, तो f () और g () के स्थानीय चर को एक ही मेमोरी लोकेशन पर मैप किया जा सकता है।
राउटर वैन ऊइजेन

ठीक है, ऐसा लगता है कि उन चर और भंडार तक पहुंचना लगभग असंभव है, स्मृति में अपने यादृच्छिक स्थान के कारण?
अब्दुल्लाह कहरामन

7

मैंने आपके द्वारा प्रदान की गई विधानसभा सूची के माध्यम से ब्राउज़ किया, और स्पष्ट रूप से टूटे हुए कुछ भी नहीं निकला।

अगर मैं तुम होते तो मेरे अगले कदम होते:

(१) मैं एल ई डी ब्लिंक करने की कुछ अन्य विधि चुनूँगा। असेंबली लिस्टिंग में "XORWF PORTA, F" द्वारा कुख्यात "रीड-संशोधित-राइट प्रॉब्लम" हो सकती है (या नहीं भी)।

शायद कुछ इस तरह:

// Partial translation of code from abdullah kahraman
// untested code
// feel free to use however you see fit
void fTask2(void)
{
    OS_initializeTask(2); // Initialize task 2
    while (1)
    {
        PORTC = 0xAA;
        OS_yield(2); // Yield from task 2
        PORTC = 0x55;
        OS_yield(2); // Yield from task 2
    }
}

(यदि आप वास्तव में विस्तृत स्पष्टीकरण देखना चाहते हैं कि "XORWF PORTA, F" अक्सर समस्याएं क्यों पैदा करता है, तो देखें " माइक्रोचिप PIC16F690 पर एकल आउटपुट पिन को अनायास चालू करने से क्या होता है ? उसी पोर्ट पर किसी अन्य पिन को बंद करें? " क्या होता है ? जब डेटा को LATCH को लिखा जाता है? ";" द रीड-मॉडिफ़-राइट प्रॉब्लम ";" रीड से पहले पढ़ें ");

(2) मैं कोड के माध्यम से सिंगल-स्टेप होगा, यह सुनिश्चित करते हुए कि चर अपेक्षित मूल्यों और अपेक्षित अनुक्रम में सेट किए जा रहे हैं। मुझे यकीन है कि PIC16F616 के लिए एक एकल-चरण हार्डवेयर डिबगर वहां मौजूद है, तो नहीं कर रहा हूँ, लेकिन देखते हैं कई उत्कृष्ट पीआईसी माइक्रोकंट्रोलर सिमुलेटर जैसे PICsim कि PIC16 श्रृंखला चिप्स अनुकरण कर सकते हैं।

सिंगल-स्टेपिंग कोड (एक सिम्युलेटर में या सिंगल-स्टेप हार्डवेयर डीबगर के साथ) वास्तव में क्या चल रहा है, इसके विवरण को समझने का एक अच्छा तरीका है, इस बात की पुष्टि करें कि चीजें आपके इच्छित तरीके से हो रही हैं, और यह आपको उन चीजों को देखने देता है जो हैं कार्यक्रम को पूर्ण गति से चलाते समय व्यावहारिक रूप से असंभव है।

(३) यदि मैं अभी भी लड़खड़ा रहा हूँ, तो मैं संकेत के बजाय सरणियों का उपयोग करने के लिए कोड का अनुवाद करने की कोशिश करूँगा। कुछ लोग पॉइंटर्स को थोड़ा मुश्किल और डिबग करने में मुश्किल का उपयोग कर पाते हैं। मुझे अक्सर लगता है कि, ट्रिकी पॉइंटर कोड को सरणी-उन्मुख कोड में अनुवाद करने की प्रक्रिया में, मुझे पता चलता है कि बग क्या है। यहां तक ​​कि अगर मैं मूल पॉइंटर कोड पर वापस लौटना चाहता हूं और सरणी संस्करण को फेंक रहा हूं, तो व्यायाम उपयोगी है क्योंकि इससे मुझे बग को खोजने और ठीक करने में मदद मिली। (कभी-कभी कंपाइलर सरणी-उन्मुख कोड से कम, तेज कोड उत्पन्न कर सकता है, इसलिए कई बार मैं मूल सूचक कोड को फेंक देता हूं और सरणी संस्करण रखता हूं)।

शायद कुछ ऐसा

// Partial translation of code from abdullah kahraman
// untested code
// feel free to use however you see fit
struct TCB_t // Create task control block and type define it as "TCB_t"
{
    unsigned char pch; // PCLATH value
    unsigned char pcl; // PCL value
    int next; // This array index points to the next task. We are creating a linked list.
};

int currentTask = 1; // This TCB index will point to the current task's TCB.

struct TCB_t tasks[3]; // Define the TCB for task1 and task2.

#define OS_initializeTask(x); tasks[x].pch = PCLATH;\
                             tasks[x].pcl = PCL + 8;\
                             asm("return");

#define OS_runTasks();       asm("_taskswitcher");\
                             currentTask = tasks[currentTask].next;\
                             PCLATH = tasks[currentTask].pch;\
                             PCL = tasks[currentTask].pcl;

#define OS_yield(x);         tasks[x].pch = PCLATH;\
                             tasks[x].pcl = PCL + 8;\
                             asm("goto _taskswitcher");

मैं अब सरणियाँ लागू कर रहा हूँ। सिफारिश के लिए धन्यवाद।
अब्दुल्लाह कहरामन

3

मैं मूल रूप से davidcary से सहमत हूँ। ऐसा लग रहा है कि यह काम कर सकता है।

मुझे नहीं पता कि इससे क्या काम हुआ, लेकिन डिबगर अब पूरी तरह से काम करता है।

मैं यह अनुमान लगा रहा हूं कि इसका मतलब है कि यह पूरी तरह से सिम्युलेटर में काम करता है ।

1) जांचें कि आपके कार्य वास्तविक चिप में गैर-आरटीओएस वातावरण में, अपने दम पर काम करते हैं।

2) सर्किट डिबगिंग में करें। असली चिप पर कार्यक्रम के माध्यम से कदम रखें, और सभी प्रासंगिक चर देखें ताकि यह सुनिश्चित हो सके कि सब कुछ योजना के अनुसार चल रहा है।


हां, मेरा मतलब डीबगर है, जो कि MPLABX का सिम्युलेटर है। गैर-आरटीओएस वातावरण में, कार्य अपने आप काम करते हैं। मेरे पास आईसीडी नहीं है। मेरे पास केवल ICD के साथ mikroElektronika easyPIC5 है, हालांकि, यह केवल mikroC कंपाइलर के साथ काम करता है। अब, बदलते संकलक मुझे समस्या को खोजने नहीं देंगे, या, क्या यह होगा?
अब्दुल्लाह कहरामन

1

मैंने केवल आपके कोड को संक्षेप में देखा, लेकिन इसका कोई मतलब नहीं है। कई जगहों पर आप पीसीएल को लिख रहे हैं, फिर यह उम्मीद करते हैं कि इसके बाद अन्य निर्देशों को उत्तेजित किया जाए।

जैसा कि मैंने पहले भी कहा, सी इस तरह के कम स्तर के मूलभूत हार्डवेयर रजिस्टरों तक पहुँचने के लिए अनुपयुक्त है। आपको वास्तव में इसके लिए असेंबली का उपयोग करने की आवश्यकता है। यह जानने की कोशिश करना कि C कोड काम क्यों नहीं कर रहा है, सिर्फ समय की बर्बादी है।


मैं असेंबली और सी को जोड़ नहीं पाया। मुझे बहुत काम करना था। असेंबली और सी कोड दोनों मेरे लिए तर्कसंगत लगते हैं। आप कहां से कह रहे हैं कि मैं उन निर्देशों को निष्पादित करने की उम्मीद कर रहा हूं जो पीसीएल को एक लेख का पालन करते हैं? मैंने असेंबली और सी दोनों के लिए डिबगर देखा है, और यह कामना के रूप में काम करता है।
अब्दुल्लाह कहरामन

-1 के लिए क्षमा करें। मुझे आकस्मिक रूप से प्रेस करना चाहिए था और मैंने देखा है कि अब।
अब्दुल्लाह कहरामन

@abdullah: अब मैं जिस मशीन में हूं, मैं सोर्स कोड नहीं देख सकता। यह ब्राउज़र में स्थायी रूप से ढह गया है। मुझे याद है कि आपने PCLATH को, फिर PCL को सामान सौंपा, तो मुझे लगता है कि एक मामले में एक RETURN करने का प्रयास किया गया। जैसे ही आप पीसीएल को लिखते हैं, निष्पादन आपको पीसीएलएटीएच: पीसीएल में दिए गए पते पर कूदने वाला है, इसलिए निम्न में से कोई भी निर्देश अप्रासंगिक हैं। सी में ऐसा करना वास्तव में अच्छा नहीं है क्योंकि आप संकलक प्रबंधित संसाधनों के साथ खिलवाड़ कर रहे हैं और इस तरह संभवतः संकलक मान्यताओं को अमान्य कर रहे हैं। पहले से ही असली विधानसभा का उपयोग करें। मैं इसे दोहराने के लिए थक गया हूँ।
ओलिन लेट्रोप

1
कोड को देखते हुए, कहीं नहीं है कि पीसीएल को एक और बयान से ठीक पहले संशोधित किया गया है। ऐसा लगता है कि इसे संशोधित करने का एकमात्र स्थान मुख्य () के अंत में है। लेकिन यह एक अच्छी बात है कि आपको यह सुनिश्चित करना चाहिए कि आप अपने संसाधनों के लिए कंपाइलर से नहीं लड़ रहे हैं। तुम दोनों हार जाओगे।
रॉकेटमैग्नेट

3
इस तरह के काम के लिए सी पूरी तरह से स्वीकार्य है, और वास्तव में यह सी-मिडिल लैंग्वेज में लिखना पसंद है जैसे सी असेंबली लैंग्वेज के विपरीत क्योंकि इसे पढ़ना और बनाए रखना आसान है। एक सभ्य संकलक कोड उत्पन्न करेगा जो औसत व्यक्ति वैसे भी नहीं लिखेगा। मैं आमतौर पर केवल बहुत ही बुनियादी स्टार्टअप कोड, विशिष्ट क्षेत्रों के लिए असेंबलर लिखता हूं, जहां मैं कंपाइलर से बेहतर या तेज इंटरप्ट के लिए अनुकूलन कर सकता हूं, या यदि कोड आकार की बाधाएं इसे निर्देशित करती हैं। इन दिनों शुद्ध विधानसभा की ज्यादा जरूरत नहीं है।
akohlsmith

1

नीचे XC8 संकलक का उपयोग करके इन-लाइन असेंबली करने का तरीका है, और यह अब काम करता है! हालाँकि, मुझे STATUSरजिस्टर को बचाने और पुनर्स्थापित करने के लिए अधिक कोड विकसित करने की आवश्यकता है , जो कि सामान्य रजिस्टर के मुकाबले थोड़ा पेचीदा लगता है।

संपादित करें: कोड बदल दिया गया है। कृपयापिछले कोड के लिए इस पोस्ट के पुराने संस्करणों को देखें।

/*
 * File:   main.c
 * Author: abdullah
 *
 * Created on 10 Haziran 2012 Pazar, 14:43
 */
#include <xc.h> // Include the header file needed by the compiler
#include "RTOS.h" // Include the header for co-operative RTOS.
__CONFIG(FOSC_INTOSCIO & WDTE_OFF & PWRTE_ON & MCLRE_OFF & CP_OFF & IOSCFS_4MHZ & BOREN_ON);

unsigned char OS_currentTask; // This register holds the current task's place in the array OS_tasks
unsigned char OS_tasks[4]; // This array holds PCL and PCLATH for tasks. This array will have..
//                            .. (number of tasks)*2 elements, since every task occupies 2 places.

void fTask1(void); // Prototype the function for task1.
void fTask2(void); // Prototype the function for task2.

void main(void)
{
    TRISA = 0; // Set all of the PORTA pins as outputs.
    TRISC = 0; // Set all of the PORTC pins as outputs.
    ANSEL = 0; // Set all of the analog input pins as digital i/o.
    PORTA = 0; // Clear PORTA bits.
    PORTC = 0; // Clear PORTC bits.

    OS_currentTask = 0; // Current task is first task.
    fTask1(); // Call task to initialize it.
    OS_currentTask += 2; // Increment task pointer by two since every task occupies 2 places in the array.
    fTask2(); // Call task to initialize it.
    OS_runTasks(4); // Run the tasks in order. The argument of this macro takes is: (Number of tasks) * 2
}

void fTask1(void)
{
    OS_initializeTask(); // Initialize the task so that task runner can get its ingredients.
    while (1)
    {
        PORTC = 0xAA;
        OS_yield(); // Yield CPU to other tasks.
        PORTC = 0x55;
        OS_yield(); // Yield CPU to other tasks.
    }
}

void fTask2(void)
{
    OS_initializeTask(); // Initialize the task so that task runner can get its ingredients.
    while (1)
    {
        PORTC = 0xFF;
        OS_yield(); // Yield CPU to other tasks.
        PORTC = 0x00;
        OS_yield(); // Yield CPU to other tasks.
    }
}

और यहाँ हैडर फ़ाइल है RTOS.h:

/* 
 * File:   RTOS.h
 * Author: abdullah
 *
 * Created on 21 Haziran 2012 Perşembe, 10:51
 */

#ifndef RTOS_H
#define RTOS_H

asm("OS_yield MACRO");
asm("local OS_tmp");
asm("movlw   _OS_tasks            ; Store the address of tasks, which is the start address of our task 'array'."); 
asm("addwf   _OS_currentTask, w   ; Add current task's index to the start address."); 
asm("movwf   fsr                  ; We have the index of current task in W. Copy it to FSR"); 
asm("movlw   high(OS_tmp)         ; Copy PCLATH register's contents for the label, to W register.");
asm("movwf   indf                 ; Copy W to current task's first item. We now store PCLATH of the current state of the task."); 
asm("incf    fsr, f               ; Increment index, so that we will point to the next item of current task."); 
asm("movlw   low(OS_tmp)          ; Copy PCL of the label to W register. This will let us save the PCL of the current state of the task.");
asm("movwf   indf                 ; Copy W to task's next item. With that, we will initialize the current task.");
asm("goto    OS_taskswitcher");
asm("OS_tmp:                      ; We will use this label to gather the PC of the return point.");
asm("ENDM"); 

#define OS_yield(); asm("OS_yield");

asm("OS_initializeTask MACRO");
asm("local   OS_tmp");
asm("movlw   _OS_tasks            ; Store the address of tasks, which is the start address of our task 'array'."); 
asm("addwf   _OS_currentTask, w   ; Add current task's index to the start address."); 
asm("movwf   fsr                  ; We have the index of current task in W. Copy it to FSR"); 
asm("movlw   high(OS_tmp)        ; Copy PCLATH register's contents for the label, to W register."); 
asm("movwf   indf                 ; Copy W to current task's first item. We now store PCLATH."); 
asm("incf    fsr,f                ; Increment index, so that we will point to the next item of current task."); 
asm("movlw   low(OS_tmp)         ; Copy PCL of the label to W register. This will let us save the PCL of the current state of the task."); 
asm("movwf   indf                 ; Copy W to task's next item. With that, we will initialize the current task."); 
asm("return                       ; We have gathered our initialazation information. Return back to main."); 
asm("OS_tmp                      ; We will use this label to gather the PC of the return point.");
asm("ENDM"); 

#define OS_initializeTask(); asm("OS_initializeTask");

asm("OS_runTasks MACRO numberOfTasks");
asm("global OS_taskswitcher");
asm("OS_taskswitcher:");
asm("CLRWDT"); 
asm("movlw   0x02                 ; W = 2"); 
asm("addwf   _OS_currentTask, f   ; Add 2 to currentTask, store it in currentTask."); 
asm("movlw   numberOfTasks        ; W = numOfTasks");
asm("subwf   _OS_currentTask, w   ; w= f - w"); 
asm("btfsc   status, 0            ; If currentTask >= numOfTasks"); 
asm("clrf    _OS_currentTask      ; Clear currentTask"); 
asm("movlw   _OS_tasks            ; Store the address of tasks, which is the start address of our task 'array'."); 
asm("addwf   _OS_currentTask, w   ; Add current task's index to the start address."); 
asm("movwf   fsr                  ; We have the index of current task in W. Copy it to FSR"); 
asm("movf    indf, w              ; Copy the contents of current task's first item to W"); 
asm("movwf   pclath               ; Copy W to PCLATH. As a result, current task's PCLATH will be in PCLATH register."); 
asm("incf    fsr, f               ; Increment index, so that we will point to the next item of current task."); 
asm("movf    indf, w              ; Copy the contents of current task's second item to W."); 
asm("movwf   pcl                  ; Copy W to PCL. Finally, current task's PCL will be in PCL register.");
asm("ENDM");

#define OS_runTasks(numberOfTasks); asm("OS_runTasks "#numberOfTasks);

#endif  /* RTOS_H */

लगता है कि आप अपना इनाम जीतने जा रहे हैं। बधाई हो! :-)
स्टीवनव

@stevenvh आह, क्या ऐसा होता है, मुझे नहीं पता था? धन्यवाद :)
अब्दुल्लाह कहरामन

इसे काम करने के लिए बधाई!
दाविदकरी

धन्यवाद @davidcary! मैं वास्तव में आपके बधाई दोस्तों की सराहना करता हूं।
अब्दुल्लाह कहरामन

1
क्या आपको वास्तव में स्थिति को बहाल करने की आवश्यकता है? यदि हां, तो आप का उपयोग करना होगा अनुदेश "swapf", कहीं और प्रलेखित कारणों के लिए: " पी एंडरसन ", " माइक्रोचिप मध्य दूरी परिवार मैनुअल: खंड 8.5 प्रसंग सहेजा जा रहा है ", " पीआईसी बचत डब्ल्यू और स्थिति "
davidcary

0

नीचे विधानसभा का उपयोग करके इसे कैसे लागू किया जाए। फ़ॉर्मेटिंग (पास्टबिन के लिंक) के साथ समान कोड तक पहुंचें । इसमें कैसे सुधार किया जा सकता है? PIC विधानसभा में यह मेरा पहला कार्यक्रम है, किसी भी टिप्पणी की सराहना की है।

list p=16f616
#include p16f616.inc

;*** Configuration Bits ***
__CONFIG _FOSC_INTOSCIO & _WDTE_OFF & _WDT_OFF & _PWRTE_ON & _MCLRE_OFF & _CP_OFF & _IOSCFS_8MHZ & _BOREN_ON
;**************************

;*** Variable Definitions ***
VARS        UDATA                   ; Define undefined data(s).
numOfTasks  res     1               ; This variable holds the number of tasks multiplied by 2.
currentTask res     1               ; Index variable that points to the current task's index in "tasks"
tasks       res     4               ; This is task "array". Every task occupies 2 bytes.
;****************************

;*** Reset Vector ***
RESET   CODE    0x0000              ; Define a code block starting at 0x0000, which is reset vector, labeled "RESET"
        goto    start               ; Start the program.
;********************

;*** Main Code ***
MAIN    CODE
start                               ; Label the start of the program as "start".
        banksel TRISA               ; Select appropriate bank for TRISA.
        clrf    TRISA               ; Clear TRISA register. Configure all of the PORTA pins as digital outputs.
        clrf    TRISC               ; Clear TRISC register. TRISC and TRISA are at the same bank, no need for "banksel".
        clrf    ANSEL               ; Clear ANSEL register and configure all the analog pins as digital i/o.
        banksel PORTA               ; Select appropriate bank for PORTA.
        clrf    PORTA               ; Clear PORTA register.
        clrf    PORTC               ; Clear PORTC register. PORTC and PORTA are at the same bank, no need for "banksel".


        movlw   0x04                ; W = Number of tasks * 2.
        movwf   numOfTasks          ; Since every task has two datas in it, we will multiply by 2.
        clrf    currentTask         ; Set the task#0 as current task.

        CALL    task0               ; Call task#0 since we need to initialize it. We are going to get..
                                    ; ..its PCL and PCLATH values at the start address.
        movlw   0x02                ; W = 2
        addwf   currentTask, f      ; Increment currentTask by 2, since every task occupies 2 places.

        CALL    task1               ; Call task#1, for initialazation.

taskswitcher
        movlw   0x02                ; W = 2
        addwf   currentTask, f      ; Add 2 to currentTask, store it in currentTask.
        movf    numOfTasks, w       ; W = numOfTasks
        subwf   currentTask, w      ; w= f - w
        btfsc   STATUS, 0           ; If currentTask >= numOfTasks
        clrf    currentTask         ; Clear currentTask

        movlw   tasks               ; Store the address of tasks, which is the start address of our task "array".
        addwf   currentTask, w      ; Add current task's index to the start address.
                                    ; For example; task1's index is 2:  [task0_1][task0_2][task1_1][task1_2]....
                                    ;                                       0        1        2        3
        movwf   FSR                 ; We have the index of current task in W. Copy it to FSR
        movf    INDF, w             ; Copy the contents of current task's first item to W
        movwf   PCLATH              ; Copy W to PCLATH. As a result, current task's PCLATH will be in PCLATH register.

        incf    FSR, f              ; Increment index, so that we will point to the next item of current task.
        movf    INDF, w             ; Copy the contents of current task's second item to W.
        movwf   PCL                 ; Copy W to PCL. Finally, current task's PCL will be in PCL register.

        goto    $                   ; This instruction is not effective. But, enter the endless loop.

;*** TASK 0 ***
TASK0   CODE
;**************
task0
        movlw   tasks               ; Store the address of tasks, which is the start address of our task "array".
        addwf   currentTask, w      ; Add current task's index to the start address.

        movwf   FSR                 ; We have the index of current task in W. Copy it to FSR
        movf    PCLATH, w           ; Copy PCLATH register's contents to W register.
        movwf   INDF                ; Copy W to current task's first item. We now store PCLATH.

        incf    FSR,f               ; Increment index, so that we will point to the next item of current task.
        movlw   low($+3)            ; Copy PCL+3 to W register. This will let us save the PCL of the start of the task.
        movwf   INDF                ; Copy W to task's next item. With that, we will initialize the current task.
        return                      ; We have gathered our initialazation information. Return back to main.

task0main
        banksel PORTA               ; Select the appropriate bank for PORTA
        movlw   0xAA                ; Move literal to W so that W = 0xAA
        movwf   PORTA               ; PORTA = 0xAA. Use a LATA register to create more robust code.

        movlw   tasks               ; Store the address of tasks, which is the start address of our task "array".
        addwf   currentTask, w      ; Add current task's index to the start address.

        movwf   FSR                 ; We have the index of current task in W. Copy it to FSR
        movf    PCLATH, w           ; Copy PCLATH register's contents to W register.
        movwf   INDF                ; Copy W to current task's first item. We now store PCLATH of the current state of the task.

        incf    FSR,f               ; Increment index, so that we will point to the next item of current task.
        movlw   low($+3)            ; Copy PCL+3 to W register. This will let us save the PCL of the current state of the task.
        movwf   INDF                ; Copy W to task's next item. With that, we will initialize the current task.

        goto    taskswitcher        ; Yield the CPU to the awaiting task by going to task switcher.

        banksel PORTA               ; Select the appropriate bank for PORTA
        movlw   0x55                ; Move literal to W so that W = 0x55
        movwf   PORTA               ; PORTA = 0xAA. Use a LATA register to create more robust code.

        goto    task0main           ; Loop by going back to "task0main". We will continuously toggle PORTA.

;*** TASK 1 ***
TASK1   CODE
;**************
task1
        movlw   tasks               ; Store the address of tasks, which is the start address of our task "array".
        addwf   currentTask, w      ; Add current task's index to the start address.

        movwf   FSR                 ; We have the index of current task in W. Copy it to FSR
        movf    PCLATH, w           ; Copy PCLATH register's contents to W register.
        movwf   INDF                ; Copy W to current task's first item. We now store PCLATH.

        incf    FSR,f               ; Increment index, so that we will point to the next item of current task.
        movlw   low($+3)            ; Copy PCL+3 to W register. This will let us save the PCL of the start of the task.
        movwf   INDF                ; Copy W to task's next item. With that, we will initialize the current task.
        return                      ; We have gathered our initialazation information. Return back to main.

task1main
        banksel PORTA               ; Select the appropriate bank for PORTA
        movlw   0xAA                ; Move literal to W so that W = 0xAA
        movwf   PORTA               ; PORTA = 0xAA. Use a LATA register to create more robust code.

        movlw   tasks               ; Store the address of tasks, which is the start address of our task "array".
        addwf   currentTask, w      ; Add current task's index to the start address.

        movwf   FSR                 ; We have the index of current task in W. Copy it to FSR
        movf    PCLATH, w           ; Copy PCLATH register's contents to W register.
        movwf   INDF                ; Copy W to current task's first item. We now store PCLATH of the current state of the task.

        incf    FSR,f               ; Increment index, so that we will point to the next item of current task.
        movlw   low($+3)            ; Copy PCL+3 to W register. This will let us save the PCL of the current state of the task.
        movwf   INDF                ; Copy W to task's next item. With that, we will initialize the current task.

        goto    taskswitcher        ; Yield the CPU to the awaiting task by going to task switcher.

        banksel PORTA               ; Select the appropriate bank for PORTA
        movlw   0x55                ; Move literal to W so that W = 0x55
        movwf   PORTA               ; PORTA = 0xAA. Use a LATA register to create more robust code.

        goto    task1main           ; Loop by going back to "task1main". We will continuously toggle PORTA.

        END                         ; END of the program.

असेंबली में आपका पहला कार्यक्रम मल्टी-टास्किंग RTOS है? वाह। ज्यादातर लोग वास्तव में अच्छा कर रहे हैं यदि उन्हें पलक झपकने के लिए एलईडी मिल सकती है। :-)।
davidcary

ठीक है, वास्तव में यह PIC वास्तुकला में मेरा पहला विधानसभा कार्यक्रम है । इससे पहले, विश्वविद्यालय में, मैंने 8086 कक्षाएं ली हैं, लेकिन वे व्यावहारिक नहीं थे और मुझे खुद से सीखना था क्योंकि व्याख्याता एक विकल्प था और कुछ भी नहीं जानता था, फिर भी परीक्षा में कठिन प्रश्न पूछ रहा था ..
अब्दुल्ला कहारामन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.