{"id":382,"date":"2022-03-22T19:14:00","date_gmt":"2022-03-22T19:14:00","guid":{"rendered":"http:\/\/www.quorb.net\/staging\/2643\/?p=382"},"modified":"2023-01-14T19:38:00","modified_gmt":"2023-01-14T19:38:00","slug":"whats-really-going-on-inside-of-micro-controllers","status":"publish","type":"post","link":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/","title":{"rendered":"What&#8217;s really going on inside of micro-controllers?"},"content":{"rendered":"\n<p>Programming electronics has gone from being exclusive to universities and fortune 500 companies to something that any Joe can successfully start doing tonight. A part of the e easing of the learning curve can be attributed to products such as Arduino\u00a9 and STM\u2019s Nucleo\u00a9 Hardware abstraction layer (HAL). These programs have laid a lot of ground work for a user to easily code what they want the chip to do in a human readable fashion as shown in the code snippet below for programming one of the Star Boards.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/----------LED Blink----------\/\/\n\nint main(void) \n{\n    PA03_OUT; \/\/--- Declares pin 3 is an output\n\n    while(1) \/\/--- infinite loop\n    {\n        SET_PA03; \/\/--- Sets pin3 to a high state\n        fnSimpleDelay(10000); \n        CLR_PA03; \/\/--- Sets pin3 to a low state\n        fnSimpleDelay(10000);\n    }\n}<\/code><\/pre>\n\n\n\n<p class=\"has-black-color has-text-color\">Thirty seconds of reading that snippet and you can see that it\u2019s a program that turns on and off a pin and what ever the pin is connected to. This abstraction is good for a human to easily read and write code, but it is not what the chip needs in order to perform its tasks. How does the chip know which pin is pin 3? How does it know what it means to set a pin high or low? The answer to that is manipulation of port registers and their associated values.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\">Every chip that has ever been made with integrated hardware such as timers, GPIOs and converters assigns an address to every register associated with that hardware. Every register can hold an eight to thirty two bit value, and every bit in the value corresponds to a specific setting for the register. Ultimately, everything comes back to \u201cbare metal\u201d programming.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\">When manipulating a pin in bare metal programming, three things are happening. First you need to define the specific pin you are working with. Most pins are tied to one of several general purpose input and output peripherals which are embedded in the chip and have several registers which you can use to isolate the individual pins. Second define the pin\u2019s function. Each pin can be an input, an output, an analog, or an alternate function which ties to other peripherals such as timers, USARTs, or i2c communication. Finally consider if the pin is going to function need a pull up or pull down push-pull or open drain. Further information on GPIOs will be written in a later article.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\">If we break down the above code snippet from its source code, you can see that PA03_out corresponds to a macro defined in commonheader<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#define PA03_OUT GPIOA_MODER &amp;= 0xFFFFFF3F; GPIOA_MODER |= 0x00000040;<\/code><\/pre>\n\n\n\n<p>In this macro, GPIOA_MODER is anded so the bits that correspond to pin 3 are set to 00, and then they are ored so they are then set to 01 which will make pin3 of GPIOA act as an output. SET_PA03 and CLR_PA03 also work in a similar way, but they work by manipulating the GPIOA_BSRR register as seen in the code below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/----------Simple Delay----------\/\/\n\nvoid fnSimpleDelay(u16 ticker) \n{\n    fnTimSixInit();\n    TIM6_CR1 |= 0x0008; \/\/--- set one pulse mode\n    TIM6_PSC = 7199; \/\/--- adjust the counter speed to 1\/10000 second pulse\n    TIM6_ARR = ticker;\n    TIM6_CR1 |= 0x0001; \/\/--- start the timer\n\n    \/*\n    loop until the counter counts up to the ARR(ticker) and an update event\n    occurs and deactivates the timer setting TIM6_CR1 to 0x0008.\n    *\/\n    while(TIM6_CR1 != 0x0008) \/\/--- test to see if timer turns off\n    {\n        nop2;\n    }\n}<\/code><\/pre>\n\n\n\n<p class=\"has-black-color has-text-color\">In fnSimpleDelay, the registers for the timer are written to specific values which setup one pulse to work over a specified time once the CEN bit in CR1 is set to on and setting the CR1 register to equal 0x0009. Once the timer has counted up to the specified value determined in the ARR register, the CEN Bit gets turned back to zero and sets the value to 0x0008 which can be read as a signal to go onto the next step after the delay is over. There is a lot more you can do with timers than just setting delays. More information on timers will be written in a later article.<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\">Human abstracted code is excellent for getting as many people started in embedded programming as possible. It can be more quickly written, and read and easily understood for troubleshooting and development. However, it is important to begin dipping your feet into bare metal programming in order for you the user to get a better and more complete understanding of what is going inside of the chip.<\/p>\n\n\n\n<a href=\"https:\/\/www.freepik.com\/vectors\/technology\">Technology vector created by rawpixel.com &#8211; www.freepik.com<\/a>\n","protected":false},"excerpt":{"rendered":"<p>Programming electronics has gone from being exclusive to universities and fortune 500 companies to something that any Joe can successfully start doing tonight. A part of the e easing of the learning curve can be attributed to products such as Arduino\u00a9 and STM\u2019s Nucleo\u00a9 Hardware abstraction layer (HAL). These programs have laid a lot of&hellip;&nbsp;<a href=\"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">What&#8217;s really going on inside of micro-controllers?<\/span><\/a><\/p>\n","protected":false},"author":6,"featured_media":384,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","_themeisle_gutenberg_block_has_review":false,"_ti_tpc_template_sync":false,"_ti_tpc_template_id":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[75,24],"tags":[26,27,25,28],"class_list":["post-382","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-programming","tag-bare-metal","tag-coding","tag-microcontrollers","tag-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What&#039;s really going on inside of micro-controllers? -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What&#039;s really going on inside of micro-controllers? -\" \/>\n<meta property=\"og:description\" content=\"Programming electronics has gone from being exclusive to universities and fortune 500 companies to something that any Joe can successfully start doing tonight. A part of the e easing of the learning curve can be attributed to products such as Arduino\u00a9 and STM\u2019s Nucleo\u00a9 Hardware abstraction layer (HAL). These programs have laid a lot of&hellip;&nbsp;Read More &raquo;What&#8217;s really going on inside of micro-controllers?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-22T19:14:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-14T19:38:00+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"2560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ethan Fredsti\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ethan Fredsti\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/\"},\"author\":{\"name\":\"Ethan Fredsti\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/#\\\/schema\\\/person\\\/4cc17e6050006e2248eed767c08c75c6\"},\"headline\":\"What&#8217;s really going on inside of micro-controllers?\",\"datePublished\":\"2022-03-22T19:14:00+00:00\",\"dateModified\":\"2023-01-14T19:38:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/\"},\"wordCount\":647,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.quorb.net\\\/staging\\\/2643\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1\",\"keywords\":[\"bare metal\",\"coding\",\"microcontrollers\",\"programming\"],\"articleSection\":[\"Blog\",\"Programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/\",\"url\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/\",\"name\":\"What's really going on inside of micro-controllers? -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.quorb.net\\\/staging\\\/2643\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1\",\"datePublished\":\"2022-03-22T19:14:00+00:00\",\"dateModified\":\"2023-01-14T19:38:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/#\\\/schema\\\/person\\\/4cc17e6050006e2248eed767c08c75c6\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.quorb.net\\\/staging\\\/2643\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.quorb.net\\\/staging\\\/2643\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1\",\"width\":2560,\"height\":2560,\"caption\":\"Illustration of circuit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/whats-really-going-on-inside-of-micro-controllers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What&#8217;s really going on inside of micro-controllers?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/#website\",\"url\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/\",\"name\":\"\",\"description\":\"A Laboratory everywhere\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/#\\\/schema\\\/person\\\/4cc17e6050006e2248eed767c08c75c6\",\"name\":\"Ethan Fredsti\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g\",\"caption\":\"Ethan Fredsti\"},\"url\":\"https:\\\/\\\/www.quorb.net\\\/staging\\\/2643\\\/author\\\/efredsti\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What's really going on inside of micro-controllers? -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/","og_locale":"en_US","og_type":"article","og_title":"What's really going on inside of micro-controllers? -","og_description":"Programming electronics has gone from being exclusive to universities and fortune 500 companies to something that any Joe can successfully start doing tonight. A part of the e easing of the learning curve can be attributed to products such as Arduino\u00a9 and STM\u2019s Nucleo\u00a9 Hardware abstraction layer (HAL). These programs have laid a lot of&hellip;&nbsp;Read More &raquo;What&#8217;s really going on inside of micro-controllers?","og_url":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/","article_published_time":"2022-03-22T19:14:00+00:00","article_modified_time":"2023-01-14T19:38:00+00:00","og_image":[{"width":2560,"height":2560,"url":"http:\/\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg","type":"image\/jpeg"}],"author":"Ethan Fredsti","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ethan Fredsti","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#article","isPartOf":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/"},"author":{"name":"Ethan Fredsti","@id":"https:\/\/www.quorb.net\/staging\/2643\/#\/schema\/person\/4cc17e6050006e2248eed767c08c75c6"},"headline":"What&#8217;s really going on inside of micro-controllers?","datePublished":"2022-03-22T19:14:00+00:00","dateModified":"2023-01-14T19:38:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/"},"wordCount":647,"commentCount":0,"image":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1","keywords":["bare metal","coding","microcontrollers","programming"],"articleSection":["Blog","Programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/","url":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/","name":"What's really going on inside of micro-controllers? -","isPartOf":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#primaryimage"},"image":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1","datePublished":"2022-03-22T19:14:00+00:00","dateModified":"2023-01-14T19:38:00+00:00","author":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/#\/schema\/person\/4cc17e6050006e2248eed767c08c75c6"},"breadcrumb":{"@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#primaryimage","url":"https:\/\/i0.wp.com\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1","width":2560,"height":2560,"caption":"Illustration of circuit"},{"@type":"BreadcrumbList","@id":"https:\/\/www.quorb.net\/staging\/2643\/whats-really-going-on-inside-of-micro-controllers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.quorb.net\/staging\/2643\/"},{"@type":"ListItem","position":2,"name":"What&#8217;s really going on inside of micro-controllers?"}]},{"@type":"WebSite","@id":"https:\/\/www.quorb.net\/staging\/2643\/#website","url":"https:\/\/www.quorb.net\/staging\/2643\/","name":"","description":"A Laboratory everywhere","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.quorb.net\/staging\/2643\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.quorb.net\/staging\/2643\/#\/schema\/person\/4cc17e6050006e2248eed767c08c75c6","name":"Ethan Fredsti","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5da9120d400ba38d920aede9af2e35e30b91f82efd63755d988b09fc216ee720?s=96&d=retro&r=g","caption":"Ethan Fredsti"},"url":"https:\/\/www.quorb.net\/staging\/2643\/author\/efredsti\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.quorb.net\/staging\/2643\/wp-content\/uploads\/2022\/10\/5583-1-scaled-1.jpg?fit=2560%2C2560&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/posts\/382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/comments?post=382"}],"version-history":[{"count":1,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/posts\/382\/revisions"}],"predecessor-version":[{"id":383,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/posts\/382\/revisions\/383"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/media\/384"}],"wp:attachment":[{"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/media?parent=382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/categories?post=382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.quorb.net\/staging\/2643\/wp-json\/wp\/v2\/tags?post=382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}